|
get_temporary_bufferfunction template
<memory> template <class T> pair <T*,ptrdiff_t> get_temporary_buffer ( ptrdiff_t n ); Get block of temporary memory Requests a memory block to contain up to n elements of type T temporarily.The memory block is aligned apropriately to contain elements of type T, although it is left uninitialized (no object is constructed). This function is specifically designed to obtain memory of temporary nature (such as for the operations of an algorithm). Once the memory block is not needed anymore, it shall be released by calling return_temporary_buffer. Parameters
Return valueOn success to obtain the storage space, the function returns a pair object with its first element containing a pointer to the first element in the block, and the second element with its size, in terms of quantity of elements of type T that it can hold.If the block cannot be obtained, the pair contains a null pointer as first and a value of zero as second. Example
Possible output:
See also
|