expand<U> method

FutureOr<Iterable<U>> expand<U>(
  1. Iterable<U> f(
    1. T
    )
)

Implementation

FutureOr<Iterable<U>> expand<U>(Iterable<U> Function(T) f) async {
  return (await this).expand(f);
}