A heap represents a destination for placement new operations. This allows classes to be instantiated into memory in developer specified configurations.
Allocates memory on the heap.
Frees memory from the heap. Note: Only memory owned by the heap may be freed by it.
Attempts to reallocate an existing memory allocation on the heap.
See Implementation
A heap represents a destination for placement new operations. This allows classes to be instantiated into memory in developer specified configurations.