Sha256: 8ca49f26cd8adfd1dc35907f8b489f73002137ff1ef6c05b69dc8ae52beb1ad5
Contents?: true
Size: 364 Bytes
Versions: 396
Compression:
Stored size: 364 Bytes
Contents
```elixir @type trail :: { :left, any, BinTree.t, trail } | { :right, any, BinTree.t, trail } | :top ``` or ```elixir @type trail :: [ { :left, any, BinTree.t } | { :right, any, BinTree.t } ] ``` The immediate parent should be the easiest to access. A zipper record contains the node's value, left branch, right branch and the trail.
Version data entries
396 entries across 396 versions & 1 rubygems