Hello all,
Is there a java's equivalent to python's bisect library? With python's bisect you can do array bisection with directions. For instance bisect.bisect_left does:
Note: Sure of course i now i can do this manually with a binary search too, but wondered if there is already a lib or collection doing this.