There are no reviews yet. Be the first to send feedback to the community and the maintainers!
Repository Details
A symbol table (a.k.a associative array, a.k.a. dictionary) adopting Left Leaning Red-Black Tree 3-2 variant as its storage and implementing the same public interface of Swift Dictionary. Since the underlaying storage is a binary search tree, it relies on Key conforming to Comparable rather than Hashable.