any method

bool any(
  1. bool test(
    1. T
    )
)

Implementation

bool any(bool Function(T) test) {
  RxTracking.track(this);
  return value.any(test);
}