https://github.com/sid-sg/sidstl
From-scratch reimplementation of C++ STL containers
https://github.com/sid-sg/sidstl
Last synced: 10 months ago
JSON representation
From-scratch reimplementation of C++ STL containers
- Host: GitHub
- URL: https://github.com/sid-sg/sidstl
- Owner: sid-sg
- Created: 2025-08-11T21:19:04.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-12T00:35:29.000Z (10 months ago)
- Last Synced: 2025-08-12T01:08:44.620Z (10 months ago)
- Language: C++
- Size: 26.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todos
## Vector:
- insert
* iterator insert( const_iterator pos, size_type count, const T& value );
* iterator insert( const_iterator pos, T&& value );
* template< class InputIt > iterator insert( const_iterator pos, InputIt first, InputIt last );
* iterator insert( const_iterator pos, std::initializer_list ilist );
- shrink-to-fit
- emplace_back
- emplace
## Pair
## Tuple
## String
## unordered_map
## unordered_set
## smart pointers (unique_ptr, shared_ptr, weak_ptr)
## map
## set
## deque
## stack
## queue
## list