bind<A, B> method

  1. @override
List<B> bind<A, B>(
  1. covariant List<A> fa,
  2. covariant Function1<A, List<B>> f
)
override

Implementation

@override List<B> bind<A, B>(covariant List<A> fa, covariant Function1<A, List<B>> f) => fa.expand(f).toList();