1 line
125 B
C++
1 line
125 B
C++
std::pair<int *, int *> bounds = std::equal_range(array, array+len, what); // a custom comparator can be given as fourth arg
|