1 line
107 B
C++
1 line
107 B
C++
bool found = std::binary_search(array, array+len, what); // a custom comparator can be given as fourth arg
|