[#absl-c_equal_range-0f] = xref:absl.adoc[absl]::c_equal_range :relfileprefix: ../ :mrdocs: Container‐based version of the <algorithm> `std::equal_range()` function to return an iterator pair pointing to the first and last elements in a sorted container which compare equal to `value`. == Synopsis Declared in `<absl/algorithm/container.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename Sequence, typename T> constexpr /* implementation-defined */ c_equal_range( Sequence& sequence, T const& value); ---- == Return Value A pair of iterators bounding the range of elements equal to `value`. == Parameters [cols="1,4"] |=== | Name| Description | *sequence* | The sorted container to search. | *value* | The value to compare against. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#