expand<R> method

Iterable<R> expand<R>(
  1. Iterable<R> toElements(
    1. E element
    )
)

Implementation

Iterable<R> expand<R>(Iterable<R> Function(E element) toElements) {
  return value.expand(toElements);
}