RosettaCodeData/Task/Binary-search/C++/binary-search-6.cpp

2 lines
125 B
C++
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
std::pair<int *, int *> bounds = std::equal_range(array, array+len, what); // a custom comparator can be given as fourth arg