• Stars
    star
    2
  • Language
    Swift
  • License
    MIT License
  • Created over 3 years ago
  • Updated over 1 year ago

Reviews

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.