A | |
| append [Dlist] |
Concatenate two Dlists.
|
C | |
| concat [Dlist] |
Concatenate a list of Dlists.
|
E | |
| empty [Dlist] |
Return an empty Dlist.
|
F | |
| fold [Dlist] |
Fold the Dlist.
|
| fold_left [Dlist] |
Fold the Dlist from left.
|
| fold_right [Dlist] |
Fold the Dlist from right.
|
| foldi [Dlist] |
Fold the Dlist with index.
|
H | |
| hd [Dlist] |
Return the first element of the given Dlist.
|
| hd_exn [Dlist] |
Return the first element of the given Dlist.
|
I | |
| iter [Dlist] |
Iterate the Dlist.
|
| iteri [Dlist] |
Iterate the Dlist with index.
|
L | |
| length [Dlist] |
Return the length of the given Dlist.
|
M | |
| map [Dlist] |
Map the Dlist.
|
| map2 [Dlist] |
Map 2 Dlists.
|
| mapi [Dlist] |
Map the Dlist with index.
|
N | |
| nth [Dlist] |
Return the n-th element of the given Dlist.
|
| nth_exn [Dlist] |
Return the n-th element of the given Dlist.
|
O | |
| of_dlist [Dlist] |
Convert a Dlist to a Dlist by reconstruction.
|
| of_list [Dlist] |
Convert an OCaml list to a Dlist.
|
R | |
| rev [Dlist] |
Reverse a Dlist.
|
T | |
| tl [Dlist] |
Return the given Dlist without its first element.
|
| tl_exn [Dlist] |
Return the given Dlist without its first element.
|
| to_list [Dlist] |
Convert a Dlist to an OCaml list.
|