20 points habedi0 | 1 comments | 28 Oct 25 05:26 UTC | HN request time: 0s | source
I made an early version of a sorted collection library for Zig. Sorted collections are data structures that maintain the data in sorted order. Examples of these data structures are `java.util.TreeMap` in Java and `std::map` in C++. These data structures are mainly used for fast lookups (point search) and fast range searches.