Containers
Strings
- String class (
std::string, itp.) - String view class (
std::string_view, itp.)
Arrays
- Static array (
std::array) - Dynamic array (
std::vector)
Queues
- Queue (
std::queue) - Double-ended queue (
std::deque) - Priority queue (
std::priority_queue)
Maps, associatives
- Map (
std::map) - Unordered map (
std::unordered_map) - Multimap (
std::multimap) - Unordered multimap (
std::unordered_multimap)
Sets
- Set (
std::set) - Unordered set (
std::unordered_set) - Multiset (
std::multiset) - Unordered multiset (
std::unordered_multiset)
Other
- Stack (
std::stack) - Span (
std::span) - Node handle