[#absl-c_sort_heap-0d] = xref:absl.adoc[absl]::c_sort_heap :relfileprefix: ../ :mrdocs: Container‐based version of the <algorithm> `std::sort_heap()` function to sort a heap into ascending order (after which it is no longer a heap). == Synopsis Declared in `<absl/algorithm/container.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename RandomAccessContainer> constexpr void c_sort_heap(RandomAccessContainer& sequence); ---- == Parameters [cols="1,4"] |=== | Name| Description | *sequence* | The heap container to sort. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#