[#absl-c_search-0d] = xref:absl.adoc[absl]::c_search :relfileprefix: ../ :mrdocs: `c_search` overloads == Synopses Declared in `<absl/algorithm/container.h>` Container‐based version of the <algorithm> `std::search()` function to search a container for a subsequence. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename Sequence1, typename Sequence2> constexpr /* implementation-defined */ xref:absl/c_search-0f.adoc[c_search]( Sequence1& sequence, Sequence2& subsequence); ---- [.small]#xref:absl/c_search-0f.adoc[_» more..._]# Overload of `c_search()` for using a predicate evaluation other than `==` as the function's test condition. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename Sequence1, typename Sequence2, typename BinaryPredicate> constexpr /* implementation-defined */ xref:absl/c_search-06.adoc[c_search]( Sequence1& sequence, Sequence2& subsequence, BinaryPredicate&& pred); ---- [.small]#xref:absl/c_search-06.adoc[_» more..._]# == Return Value An iterator to the beginning of the first occurrence of `subsequence`, or the end iterator if none is found. == Parameters [cols="1,4"] |=== | Name| Description | *sequence* | The container to search. | *subsequence* | The subsequence to search for. | *pred* | The binary predicate used to compare elements. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#