ap<B> method

Iterable<B> ap<B>(
  1. Iterable<B Function(T t)> fl
)

Apply all the functions inside fl to the Iterable.

Implementation

Iterable<B> ap<B>(Iterable<B Function(T t)> fl) =>
    fl.concatMap((f) => map(f));