Why do I need std::get_temporary_buffer?
Stroustrup says in “The C++ Programming Language” (§19.4.4, SE): The idea is that a system may keep a number of fixed-sized buffers ready for fast allocation so that requesting space for n objects may yield space for more than n. It may also yield less, however, so one way of using get_temporary_buffer() is to optimistically … Read more