Smart pointers enable automatic, exception-safe, object lifetime management.
Allocators are class templates encapsulating memory allocation strategy. This allows generic containers to decouple memory management from the data itself.
Memory resources implement memory allocation strategies that can be used by
Several utilities are provided to create and access raw storage.
C++20 provides constrained uninitialized memory algorithms that accept range arguments or iterator-sentinel pairs.
| specifies some operation on iterators, sentinels and ranges are non-throwing}}
Includes e.g.
,
Includes e.g.
,
,