[#absl-c_none_of] = xref:absl.adoc[absl]::c_none_of :relfileprefix: ../ :mrdocs: Container‐based version of the <algorithm> `std::none_of()` function to test if no elements in a container fulfill a condition. == Synopsis Declared in `<absl/algorithm/container.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename C, typename Pred> constexpr bool c_none_of( C const& c, Pred&& pred); ---- == Return Value `true` if `pred` returns `false` for all elements of `c`. == Parameters [cols="1,4"] |=== | Name| Description | *c* | The container to test. | *pred* | The predicate applied to each element. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#