This document includes the roadmap for the Ordered library. It outlines features to be implemented and their current status.
Important
This roadmap is a work in progress and is subject to change.
- Collections (implemented)
- B-tree map (
BTreeMap) - Skip list map (
SkipListMap) - Trie map (
TrieMap) - Cartesian tree (
CartesianTreeMap) - Array-based sorted set (
SortedSet) - Red-black tree set (
RedBlackTreeSet)
- B-tree map (
- Common API
-
initanddeinitlifecycle -
put,get,remove, andcontains - Iterators (in-order traversal)
- Size and emptiness checks
-