Mina_stdlib.Nonempty_list
A non-empty list that is safe by construction.
module Stable : sig ... end
type 'a t = 'a Stable.Latest.t
val to_yojson : ( 'a -> Yojson.Safe.t ) -> 'a t -> Yojson.Safe.t
val hash_fold_t :
( Ppx_hash_lib.Std.Hash.state -> 'a -> Ppx_hash_lib.Std.Hash.state ) ->
Ppx_hash_lib.Std.Hash.state ->
'a t ->
Ppx_hash_lib.Std.Hash.state
val init : 'a -> 'a list -> 'a t
Create a non-empty list by proving you have a head element
val singleton : 'a -> 'a t
Create a non-empty list with a single element
val uncons : 'a t -> 'a * 'a list
Deconstruct a non-empty list into the head and tail
val head : 'a t -> 'a
The first element of the container
val tail : 'a t -> 'a list
The zero or more tail elements of the container
val last : 'a t -> 'a
val of_list_opt : 'a list -> 'a t option
Convert a list into a non-empty-list, returning None
if the list is * empty
val find : 'a t -> f:( 'a -> bool ) -> 'a option
val find_map : 'a t -> f:( 'a -> 'b option ) -> 'b option
val fold : 'a t -> init:'accum -> f:( 'accum -> 'a -> 'accum ) -> 'accum
val iter : 'a t -> f:( 'a -> unit ) -> unit
val length : 'a t -> int
val to_list : 'a t -> 'a list
Note: This is O(1) not O(n) like on most container
val min_elt : compare:( 'a -> 'a -> int ) -> 'a t -> 'a
val max_elt : compare:( 'a -> 'a -> int ) -> 'a t -> 'a
val iter_deferred :
'a t ->
f:( 'a -> unit Async_kernel.Deferred.t ) ->
unit Async_kernel.Deferred.t