upperBound static method

int upperBound(
  1. Iterable<PsProxy> ray,
  2. int tag
)

Implementation

static int upperBound(Iterable<PsProxy> ray, int tag) {
  return _bound(ray, tag, (int a, int b) => a >= b);
}