ap<B> method

Iterable<B> ap<B>(
  1. Iterable<B Function(T)> iterable
)

Apply all the functions inside iterable to this Iterable.

Implementation

Iterable<B> ap<B>(Iterable<B Function(T)> iterable) => iterable.flatMap(map);