Module SList
Sparse lists.
Constructors
type +'a t= private|Nil|Cons of 'a * 'a t|Default of int * 'a t'a tis an efficient representation of'a option list.
val empty : 'a tThe empty list.
Destructor
Usual list-like operators
Iterators ignoring optional values
module Skip : sig ... endThese iterators ignore the default values in the list.
Smart iterators
module Smart : sig ... endThese iterators also ignore the default values in the list.