lowerBound static method

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

Implementation

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