Packages

Data structures in pure Gleam! Including tree, heap, non empty list, map, set, and priority queue.

Current section

Files

Jump to
gleamy_structures include structures@red_black_tree_kv_Tree.hrl
Raw

include/structures@red_black_tree_kv_Tree.hrl

-record(tree, {
root :: structures@red_black_tree_kv:node_(any(), any()),
compare :: fun((any(), any()) -> gleam@order:order())
}).