some method

bool some(
  1. bool f(
    1. NodeOutput
    )
)

Implementation

bool some(bool Function(NodeOutput) f) {
  return this.s.any(f);
}