Content deleted Content added
→Language support - C++ - std::inplace_merge: new section |
|||
Line 134:
== Language support - C++ - std::inplace_merge ==
The term in place may be mis-leading here. std::inplace_merge may use auxiliary storage to implement the merge. It can throw an exception if it can't allocate enough memory.<ref>https://en.cppreference.com/w/cpp/algorithm/inplace_merge</ref>. Microsoft / Visual Studio attempts to allocate memory, but can perform the merge even if memory allocation fails.<ref>https://
|