isSomeAnd method

bool isSomeAnd(
  1. bool f(
    1. T self
    )
)

Implementation

@pragma("vm:prefer-inline")
bool isSomeAnd(bool Function(T self) f) {
  return f(v);
}