stdune
Stdune.Nonempty_list
A (to be expanded) collection of functions for working with non-empty lists.
stdune.filesystem_stubs
type 'a t =
| :: of 'a * 'a list
val hd : 'a t -> 'a
val of_list : 'a list -> 'a t option
val to_list : 'a t -> 'a list
val map : 'a t -> f:('a -> 'b) -> 'b t