expand<E> method

  1. @override
Iterable<E> expand<E>(
  1. Iterable<E> f(
    1. T
    ), {
  2. ConfigSet? config,
})
override

Expands each element of this ISet into zero or more elements.

Implementation

@override
Iterable<E> expand<E>(Iterable<E> Function(T) f, {ConfigSet? config}) => _s.expand(f);