Is it possible to use custom allocator for std::vector
internal allocations? If yes, how?
You basically have to implement your allocator type to conform to the Allocator concept.
The linked page lists all requirements of that type, but the core functionality is implemented in the allocate
member function.