You can search for identifiers within the package.
in-package search v0.2.0
genspio
EDSL.Elist
Functions on 'a list t values.
'a list t
val make : 'a t list -> 'a list t
Make an EDSL list out of an OCaml list.
val append : 'a list t -> 'a list t -> 'a list t
Concatenate two EDSL lists.
val iter : 'a list t -> f:((unit -> 'a t) -> unit t) -> unit t
Iterate over a list, the body of the loop ~f takes as argument function that returns the current eletment at the EDSL level.
~f
val to_string : 'a list t -> f:('a t -> byte_array t) -> byte_array t
val of_string : byte_array t -> f:(byte_array t -> 'a t) -> 'a list t