bind<B> method

Iterable<B> bind<B>(
  1. Iterable<B> f(
    1. T t
    )
)

For each element of the Iterable apply function f and flat the result.

Same as flatMap and concatMap.

Implementation

Iterable<B> bind<B>(Iterable<B> Function(T t) f) => flatMap(f);