package base

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

Module Indexed_container.Make_genSource

Parameters

module T : sig ... end

Signature

include Container.Generic with type ('a, 'phantom) t := ('a, 'phantom) T.t with type 'a elt := 'a T.elt
Sourceval length : (_, _) T.t -> int
Sourceval is_empty : (_, _) T.t -> bool
Sourceval mem : ('a, _) T.t -> 'a T.elt -> equal:('a T.elt -> 'a T.elt -> bool) -> bool
Sourceval iter : ('a, _) T.t -> f:('a T.elt -> unit) -> unit
Sourceval fold : ('a, _) T.t -> init:'acc -> f:('acc -> 'a T.elt -> 'acc) -> 'acc
Sourceval fold_result : ('a, _) T.t -> init:'acc -> f:('acc -> 'a T.elt -> ('acc, 'e) Result.t) -> ('acc, 'e) Result.t
Sourceval fold_until : ('a, _) T.t -> init:'acc -> f:('acc -> 'a T.elt -> ('acc, 'final) Container.Continue_or_stop.t) -> finish:('acc -> '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 Container.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

These are all like their equivalents in Container except that an index starting at 0 is added as the first argument to f.

Sourceval foldi : ('a, _) T.t -> init:_ -> f:(int -> _ -> 'a T.elt -> _) -> _
Sourceval iteri : ('a, _) T.t -> f:(int -> 'a T.elt -> unit) -> unit
Sourceval existsi : ('a, _) T.t -> f:(int -> 'a T.elt -> bool) -> bool
Sourceval for_alli : ('a, _) T.t -> f:(int -> 'a T.elt -> bool) -> bool
Sourceval counti : ('a, _) T.t -> f:(int -> 'a T.elt -> bool) -> int
Sourceval findi : ('a, _) T.t -> f:(int -> 'a T.elt -> bool) -> (int * 'a T.elt) option
Sourceval find_mapi : ('a, _) T.t -> f:(int -> 'a T.elt -> 'b option) -> 'b option
OCaml

Innovation. Community. Security.