package base

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Container.Make_genSource

Parameters

module T : sig ... end

Signature

Sourceval length : _ T.t -> int
Sourceval is_empty : _ T.t -> bool
Sourceval iter : 'a T.t -> f:('a T.elt -> unit) -> unit
Sourceval fold : 'a T.t -> init:'accum -> f:('accum -> 'a T.elt -> 'accum) -> 'accum
Sourceval fold_result : 'a T.t -> init:'accum -> f:('accum -> 'a T.elt -> ('accum, 'e) Result.t) -> ('accum, 'e) Result.t
Sourceval fold_until : 'a T.t -> init:'accum -> f:('accum -> 'a T.elt -> ('accum, 'final) Continue_or_stop.t) -> finish:('accum -> 'final) -> 'final
Sourceval exists : 'a T.t -> f:('a T.elt -> bool) -> bool
Sourceval for_all : 'a T.t -> f:('a T.elt -> bool) -> bool
Sourceval count : 'a T.t -> f:('a T.elt -> bool) -> int
Sourceval sum : (module Summable with type t = 'sum) -> 'a T.t -> f:('a T.elt -> 'sum) -> 'sum
Sourceval find : 'a T.t -> f:('a T.elt -> bool) -> 'a T.elt option
Sourceval find_map : 'a T.t -> f:('a T.elt -> 'b option) -> 'b option
Sourceval to_list : 'a T.t -> 'a T.elt list
Sourceval to_array : 'a T.t -> 'a T.elt array
Sourceval min_elt : 'a T.t -> compare:('a T.elt -> 'a T.elt -> int) -> 'a T.elt option
Sourceval max_elt : 'a T.t -> compare:('a T.elt -> 'a T.elt -> int) -> 'a T.elt option
OCaml

Innovation. Community. Security.