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 gleamy@non_empty_list_Next.hrl
Raw

include/gleamy@non_empty_list_Next.hrl

-record(next, {
first :: any(),
rest :: gleamy@non_empty_list:non_empty_list(any())
}).