[#absl-c_pop_heap-08] = xref:absl.adoc[absl]::c_pop_heap :relfileprefix: ../ :mrdocs: `c_pop_heap` overloads == Synopses Declared in `<absl/algorithm/container.h>` Container‐based version of the <algorithm> `std::pop_heap()` function to pop a value from a heap container. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename RandomAccessContainer> constexpr void xref:absl/c_pop_heap-06.adoc[c_pop_heap](RandomAccessContainer& sequence); ---- [.small]#xref:absl/c_pop_heap-06.adoc[_» more..._]# Overload of `c_pop_heap()` for performing a pop operation on a heap using a `comp` other than `operator<`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename RandomAccessContainer, typename LessThan> constexpr void xref:absl/c_pop_heap-0f.adoc[c_pop_heap]( RandomAccessContainer& sequence, LessThan&& comp); ---- [.small]#xref:absl/c_pop_heap-0f.adoc[_» more..._]# == Parameters [cols="1,4"] |=== | Name| Description | *sequence* | The heap container to pop from. | *comp* | The comparison used to order the heap. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#