binary_search
binary_search(const List container, const Object value) -> integer
Returns the index of the first element in the container that is not less than the given value. The container is assumed to be sorted and the bisection algorithm is used.
Parameters
- container: The container to search.
- value: The value to search for.