Packages

Fast list implementation using AVL tree

Current section

Files

Jump to
treelist include treelist_Node.hrl
Raw

include/treelist_Node.hrl

-record(node, {
value :: any(),
height :: integer(),
size :: integer(),
left :: treelist:node_(any()),
right :: treelist:node_(any())
}).