| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Further overhaul of package line comments. | Jeroen van Rijn | 2025-10-09 | 1 | -5/+1 |
| | | |||||
| * | Loosen constraint on the Key type in rb & avl tree | destroycomputers | 2024-06-18 | 1 | -1/+1 |
| | | | | | | | | The current constraint on the `init_ordered' function accepts only numeric types. While one still can init a non-numerically-keyed tree by passing a comparator explicitly, the reason to disallow non-numeric ordered types is nowhere to be found. | ||||
| * | Add `core:container/rbtree` | Jeroen van Rijn | 2024-05-23 | 1 | -6/+3 |
| | | | | | | | | | Add a red-black tree with configurable $Key and $Value. Also includes tests that verify it maintains RB invariants, doesn't leak. Originally based on the CC0 implementation from literateprograms.org. But reworked to the same API used by @Yawning's excellent `core:container/avl` for ease of use. | ||||
| * | core/container/avl: Initial import | Yawning Angel | 2024-02-24 | 1 | -0/+678 |