An open API service indexing awesome lists of open source software.

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

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