Crate im_ternary_tree[][src]

Expand description

ternary tree with structural sharing. a bit like 2-3 finger tree, however this library does not handle balancing well. meanwhile, it is also an interesting library displaying with triples:

(((0 1 2) (3 4 5) (6 7 8)) ((9 10 11) (12 13 14) (15 16 17)) (18 19 _))

or with more holes:

(((0 1 _) (2 3 4) (5 6 _)) ((7 8 _) (9 10 _) (11 12 _)) ((13 14 _) (15 16 17) (18 19 _)))

Structs

Enums