Skip to content
This repository has been archived by the owner on Dec 11, 2022. It is now read-only.
JlXip edited this page May 4, 2020 · 4 revisions

This wiki contains the whole documentation for all abstract datatypes from jotaOS' STL

Please head straight to the right sidebar to see the implemented abstract data types.

Notes

  • All the iterators in a data type are subclasses. That is, the iterator for list is list::iterator, and the constant iterator is list::const_iterator.
  • All classes with iterators, unless specified otherwise (like in bintree), use:
    • iterator begin()
    • const_iterator begin() const
    • iterator end()
    • const_iterator end() const

Sequential containers


Container adaptors


Trees


Associative containers


Others


Technically non-STL

Clone this wiki locally