any method

  1. @override
bool any(
  1. bool predicate(
    1. T2 a
    )
)
override

Return the result of calling predicate on the second value of the Tuple2.

Implementation

@override
bool any(bool Function(T2 a) predicate) => foldMap(boolOrMonoid(), predicate);