A Zipper type for traversing a List in both directions.
NOTE: This implementation mutates the concrete List
See also:
Static variables
staticread onlyfacingLeft:List<X>
List elements to the left of the current focus
staticread onlyfacingRight:List<X>
List elements to the right of the current focus
staticread onlylength:Int
Length from the current focus to the end of the list
Total length of the underlying list
Static methods
staticiterator(this:Trio<List<X>, X, List<X>>):Iterator<X>
Move the focus to the left one space, if possible.
Move the focus to the left one space, if possible.
@:tostatictoIterable(this:Trio<List<X>, X, List<X>>):Iterable<X>
Replace the value at the current focus.