[#absl-c_partition_point] = xref:absl.adoc[absl]::c_partition_point :relfileprefix: ../ :mrdocs: Container‐based version of the <algorithm> `std::partition_point()` function to return the first element of an already partitioned container for which the given `pred` is not `true`. == Synopsis Declared in `<absl/algorithm/container.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename C, typename Pred> constexpr /* implementation-defined */ c_partition_point( C& c, Pred&& pred); ---- == Return Value An iterator to the first element for which `pred` is not `true`. == Parameters [cols="1,4"] |=== | Name| Description | *c* | The already partitioned container to inspect. | *pred* | The predicate the container is partitioned by. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#