-
containers
-
containers.data
-
containers.monomorphic
-
containers.sexp
-
containers.top
Library
Module
Module type
Parameter
Class
Class type
List Zipper
- since 1.0
The pair l, r
represents the list List.rev_append l r
, but with the focus on r
val empty : 'a t
Empty zipper.
val is_empty : _ t -> bool
Empty zipper? Returns true
iff the two lists are empty.
val to_list : 'a t -> 'a list
Convert the zipper back to a list. to_list (l,r)
is List.rev_append l r
.
val to_rev_list : 'a t -> 'a list
Convert the zipper back to a reversed list. In other words, to_list (l,r)
is List.rev_append r l
.
val make : 'a list -> 'a t
Create a zipper pointing at the first element of the list.
Go to the left, or
- raises Invalid_argument
if the zipper is already at leftmost pos.
Go to the right, or
- raises Invalid_argument
if the zipper is already at rightmost pos.
Modify the current element, if any, by returning a new element, or returning None
if the element is to be deleted.
Insert an element at the current position. If an element was focused, insert x l
adds x
just before it, and focuses on x
.
val is_focused : _ t -> bool
Is the zipper focused on some element? That is, will focused
return a Some v
?
val focused : 'a t -> 'a option
Return the focused element, if any. focused zip = Some _
iff empty zip = false
.
val focused_exn : 'a t -> 'a
Return the focused element, or
- raises Not_found
if the zipper is at an end.
Drop every element on the "right" (calling right
then will do nothing), keeping the focused element, if any.