jank-lang / jank

A Clojure dialect hosted on LLVM with native C++ interop

Home Page:https://jank-lang.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add sorted maps and sets

jeaye opened this issue · comments

Clojure has sorted-map, which builds a PersistentTreeMap, and sorted-set, which builds a PersistentTreeSet. immer doesn't support these, but there's some good info here: arximboldi/immer#105

jank will need its own version, but hopefully we can benefit from the stdlib.

Overall, since we have hash maps, array maps, and hash sets, I think the sorted variants are low priority.