[#absl-c_inplace_merge-0e5] = xref:absl.adoc[absl]::c_inplace_merge :relfileprefix: ../ :mrdocs: Container‐based version of the <algorithm> `std::inplace_merge()` function to merge a supplied iterator `middle` into a container. == Synopsis Declared in `<absl/algorithm/container.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename C> void c_inplace_merge( C& c, /* implementation-defined */ middle); ---- == Parameters [cols="1,4"] |=== | Name| Description | *c* | The container holding the two consecutive sorted ranges to merge. | *middle* | An iterator to the start of the second sorted range. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#