where method

  1. @override
IVector<A> where(
  1. bool predicate(
    1. A a
    )
)
override

Implementation

@override IVector<A> where(bool predicate(A a)) => filter(predicate);