= 768" x-on:close-sidebar="sidebar=window.innerWidth >= 768 && true">
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
module Key : sig ... end
module Tree : sig ... end
include Core_kernel.Map_intf.S_plain
with module Key := Key
and module Tree := Tree
type +'a t = (t, 'a, Key.comparator_witness) Base.Map.t
val compare : ('a -> 'a -> Base.Int.t) -> 'a t -> 'a t -> Base.Int.t
include Core_kernel.Map_intf.Creators_and_accessors1
with type 'a t := 'a t
with type 'a tree := 'a Tree.t
with type key := t
with type comparator_witness := Key.comparator_witness
include Core_kernel.Map_intf.Creators1
with type 'a t := 'a t
with type 'a tree := 'a Tree.t
with type key := t
with type comparator_witness := Key.comparator_witness
include Base.Map.Creators1
with type 'a t := 'a t
with type 'a tree := 'a Tree.t
with type key := t
with type comparator_witness := Key.comparator_witness
val empty : _ t
val of_alist_or_error : (t * 'a) list -> 'a t Base.Or_error.t
val of_sorted_array : (t * 'a) array -> 'a t Base.Or_error.t
val of_increasing_sequence : (t * 'a) Base.Sequence.t -> 'a t Base.Or_error.t
val of_sequence :
(t * 'a) Base.Sequence.t ->
[ `Ok of 'a t | `Duplicate_key of t ]
val of_sequence_or_error : (t * 'a) Base.Sequence.t -> 'a t Base.Or_error.t
val of_sequence_exn : (t * 'a) Base.Sequence.t -> 'a t
val of_sequence_multi : (t * 'a) Base.Sequence.t -> 'a list t
val of_sequence_fold :
(t * 'a) Base.Sequence.t ->
init:'b ->
f:('b -> 'a -> 'b) ->
'b t
val of_sequence_reduce : (t * 'a) Base.Sequence.t -> f:('a -> 'a -> 'a) -> 'a t
val of_hashtbl_exn : (t, 'a) Core_kernel.Hashtbl.t -> 'a t
val of_key_set : (t, Key.comparator_witness) Base.Set.t -> f:(t -> 'v) -> 'v t
val quickcheck_generator :
t Core_kernel.Quickcheck.Generator.t ->
'a Core_kernel.Quickcheck.Generator.t ->
'a t Core_kernel.Quickcheck.Generator.t
include Core_kernel.Map_intf.Accessors1
with type 'a t := 'a t
with type 'a tree := 'a Tree.t
with type key := t
with type comparator_witness := Key.comparator_witness
include Base.Map.Accessors1
with type 'a t := 'a t
with type 'a tree := 'a Tree.t
with type key := t
with type comparator_witness := Key.comparator_witness
val invariants : _ t -> bool
val is_empty : _ t -> bool
val length : _ t -> int
val iter : 'a t -> f:('a -> unit) -> unit
val partition_mapi :
'a t ->
f:(key:t -> data:'a -> ('b, 'c) Base.Either.t) ->
'b t * 'c t
val partition_map : 'a t -> f:('a -> ('b, 'c) Base.Either.t) -> 'b t * 'c t
val combine_errors : 'a Base.Or_error.t t -> 'a t Base.Or_error.t
val data : 'a t -> 'a list
val validate :
name:(t -> string) ->
'a Base.Validate.check ->
'a t Base.Validate.check
val validatei :
name:(t -> string) ->
(t * 'a) Base.Validate.check ->
'a t Base.Validate.check
val symmetric_diff :
'a t ->
'a t ->
data_equal:('a -> 'a -> bool) ->
(t * [ `Left of 'a | `Right of 'a | `Unequal of 'a * 'a ]) Base.Sequence.t
val for_all : 'a t -> f:('a -> bool) -> bool
val exists : 'a t -> f:('a -> bool) -> bool
val count : 'a t -> f:('a -> bool) -> int
val subrange :
'a t ->
lower_bound:t Base.Maybe_bound.t ->
upper_bound:t Base.Maybe_bound.t ->
'a t
val to_sequence :
?order:[ `Increasing_key | `Decreasing_key ] ->
?keys_greater_or_equal_to:t ->
?keys_less_or_equal_to:t ->
'a t ->
(t * 'a) Base.Sequence.t
val key_set : _ t -> (t, Key.comparator_witness) Base.Set.t
val quickcheck_observer :
t Core_kernel.Quickcheck.Observer.t ->
'v Core_kernel.Quickcheck.Observer.t ->
'v t Core_kernel.Quickcheck.Observer.t
val quickcheck_shrinker :
t Core_kernel.Quickcheck.Shrinker.t ->
'v Core_kernel.Quickcheck.Shrinker.t ->
'v t Core_kernel.Quickcheck.Shrinker.t
module Provide_of_sexp (Key : sig ... end) : sig ... end
module Provide_bin_io
(Key : sig ... end) :
Core_kernel.Map_intf.Binable.S1 with type 'a t := 'a t
module Provide_hash (Key : Base.Hasher.S with type t := t) : sig ... end
include Core_kernel.Sexpable.S1 with type 'a t := 'a t
val t_of_sexp : (Sexplib0.Sexp.t -> 'a) -> Sexplib0.Sexp.t -> 'a t
val sexp_of_t : ('a -> Sexplib0.Sexp.t) -> 'a t -> Sexplib0.Sexp.t