flatMap<R> method

Iterable<R> flatMap<R>(
  1. Iterable<R> f(
    1. T t
    )
)

Implementation

Iterable<R> flatMap<R>(Iterable<R> Function(T t) f) {
  return asIterable().bind(f);
}