bind<B> method

  1. @override
IVector<B> bind<B>(
  1. covariant Function1<A, IVector<B>> f
)
override

Implementation

@override IVector<B> bind<B>(Function1<A, IVector<B>> f) => foldLeft(emptyVector(), (p, a) => p.plus(f(a)));