caution
Note, this article is not finished! You can help by editing this doc page.
The standard library
Style
The style below is unreadable because of the link color. We'll have to work on it.
Maths
- Mathematical functions
- Mathematical special functions
- Numeric algorithms
- Pseudo-random numbers
- Floating point numbers
- Complex numbers (
std::complex
)
Input and output
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
Algorithms
Algorytmy
See the complete list of available algorithms by clicking the heading above.