From ce0bdcce5a8432771671f693db45649037474711 Mon Sep 17 00:00:00 2001 From: Hassan Abedi Date: Mon, 27 Oct 2025 20:29:23 +0100 Subject: [PATCH] Remove the `ROADMAP.md` file --- ROADMAP.md | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 ROADMAP.md diff --git a/ROADMAP.md b/ROADMAP.md deleted file mode 100644 index a6fece5..0000000 --- a/ROADMAP.md +++ /dev/null @@ -1,23 +0,0 @@ -## Feature Roadmap - -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. - - -### 1. Core Features - -* **Collections (implemented)** - * [x] B-tree map (`BTreeMap`) - * [x] Skip list map (`SkipListMap`) - * [x] Trie map (`TrieMap`) - * [x] Cartesian tree (`CartesianTreeMap`) - * [x] Array-based sorted set (`SortedSet`) - * [x] Red-black tree set (`RedBlackTreeSet`) -* **Common API** - * [x] `init` and `deinit` lifecycle - * [x] `put`, `get`, `remove`, and `contains` - * [x] Iterators (in-order traversal) - * [x] Size and emptiness checks