Author: Kirk Shoop
feature | description |
---|---|
link-time replaceable |
Allows the std library to know at link-time which services to construct. Allows specified construction order of services by the std library. Prevents any need to address the complexities of runtime replacement in the specification or in the implementation (eg. when to construct, when to destruct, how many replacements allowed, etc..) |
cannonical across all stdlib implementations |
libraries like TBB and Qt implement a replacement once and that works with all std libraries. |
user providedstorage | minimize allocations by allowing a user to supply storage for an operation |