Module Sek.Emulated
The submodule Emulated contains Sek-based replacements for several modules in OCaml's standard library: Array, List, Queue, Stack.
module Array : sig ... endThe submodule
Arrayis a replacement for OCaml's standardArraymodule, where an array is implemented as an ephemeral sequence.
module List : sig ... endThe submodule
Listis a replacement for OCaml's standardListmodule, where a list is implemented as a persistent sequence.