Files
fennec/planning/CONTAINERS.md
2025-08-14 02:57:46 -04:00

2.1 KiB
Raw Blame History

Containers Library (containers)

Table of Contents

Introduction

This library contains headers and classes that implement common data
structures. The contents include the Containers Library of the C++ Standard
Library and Template Library.

Implementation

C++ Standard Template Library

Symbol Implemented Passed
pair
tuple
optional
variant
any
bitset
array
dynarray (std::vector)
deque
list
set (std::unordered_set)
sequence (std::set)
map (std::unordered_map)
map_sequence (std::map)
multiset (std::unordered_multiset)
multisequence (std::multiset)
multimap (std::unordered_multimap)
multimap_sequence (std::multimap)

fennec

Symbol Implemented Passed
graph
rd_tree