package core
- Overview
- No Docs
You can search for identifiers within the package.
in-package search v0.2.0
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
Industrial strength alternative to OCaml's standard library
Install
dune-project
Dependency
Authors
Maintainers
Sources
v0.15.1.tar.gz
sha256=6f7bbdda1d97f2f542a45331f062127dd5264d6ed73ece7b2c6b330785dfc991
doc/core/Core/Map/Make_binable/index.html
Module Map.Make_binable
Parameters
module Key : Key_binableSignature
module Key : sig ... endinclude Map_intf.S with module Key := Key
include Map_intf.S_plain with module Key := Key
type +'a t = (Key.t, 'a, Key.comparator_witness) Base.Map.tinclude Ppx_compare_lib.Comparable.S1 with type +'a t := 'a t
include Map_intf.Creators_and_accessors1
with type 'a t := 'a t
with type 'a tree :=
(Key.t, 'a, Key.comparator_witness) Base.Map.Using_comparator.Tree.t
with type key := Key.t
with type comparator_witness := Key.comparator_witness
include Map_intf.Creators1
with type 'a t := 'a t
with type 'a tree :=
(Key.t, 'a, Key.comparator_witness) Base.Map.Using_comparator.Tree.t
with type key := Key.t
with type comparator_witness := Key.comparator_witness
include Base.Map.Creators1
with type 'a t := 'a t
with type 'a tree :=
(Key.t, 'a, Key.comparator_witness) Base.Map.Using_comparator.Tree.t
with type key := Key.t
with type comparator_witness := Key.comparator_witness
val empty : _ tval of_alist_or_error : (Key.t * 'a) list -> 'a t Base.Or_error.tval of_sorted_array : (Key.t * 'a) array -> 'a t Base.Or_error.tval of_increasing_sequence :
(Key.t * 'a) Base.Sequence.t ->
'a t Base.Or_error.tval of_sequence :
(Key.t * 'a) Base.Sequence.t ->
[ `Ok of 'a t | `Duplicate_key of Key.t ]val of_sequence_or_error : (Key.t * 'a) Base.Sequence.t -> 'a t Base.Or_error.tval of_sequence_exn : (Key.t * 'a) Base.Sequence.t -> 'a tval of_sequence_multi : (Key.t * 'a) Base.Sequence.t -> 'a list tval of_sequence_fold :
(Key.t * 'a) Base.Sequence.t ->
init:'b ->
f:('b -> 'a -> 'b) ->
'b tval of_sequence_reduce :
(Key.t * 'a) Base.Sequence.t ->
f:('a -> 'a -> 'a) ->
'a tval of_tree :
(Key.t, 'a, Key.comparator_witness) Base.Map.Using_comparator.Tree.t ->
'a tval of_key_set :
(Key.t, Key.comparator_witness) Base.Set.t ->
f:(Key.t -> 'v) ->
'v tval quickcheck_generator :
Key.t Quickcheck.Generator.t ->
'a Quickcheck.Generator.t ->
'a t Quickcheck.Generator.tinclude Map_intf.Accessors1
with type 'a t := 'a t
with type 'a tree :=
(Key.t, 'a, Key.comparator_witness) Base.Map.Using_comparator.Tree.t
with type key := Key.t
with type comparator_witness := Key.comparator_witness
include Base.Map.Accessors1
with type 'a t := 'a t
with type 'a tree :=
(Key.t, 'a, Key.comparator_witness) Base.Map.Using_comparator.Tree.t
with type key := Key.t
with type comparator_witness := Key.comparator_witness
val invariants : _ t -> boolval is_empty : _ t -> boolval length : _ t -> intval iter : 'a t -> f:('a -> unit) -> unitval iteri_until :
'a t ->
f:(key:Key.t -> data:'a -> Base.Map.Continue_or_stop.t) ->
Base.Map.Finished_or_unfinished.tval fold_until :
'a t ->
init:'acc ->
f:
(key:Key.t ->
data:'a ->
'acc ->
('acc, 'final) Base.Container.Continue_or_stop.t) ->
finish:('acc -> 'final) ->
'finalval partition_mapi :
'a t ->
f:(key:Key.t -> data:'a -> ('b, 'c) Base.Either.t) ->
'b t * 'c tval partition_map : 'a t -> f:('a -> ('b, 'c) Base.Either.t) -> 'b t * 'c tval combine_errors : 'a Base.Or_error.t t -> 'a t Base.Or_error.tval data : 'a t -> 'a listval symmetric_diff :
'a t ->
'a t ->
data_equal:('a -> 'a -> bool) ->
(Key.t * [ `Left of 'a | `Right of 'a | `Unequal of 'a * 'a ])
Base.Sequence.tval for_all : 'a t -> f:('a -> bool) -> boolval exists : 'a t -> f:('a -> bool) -> boolval count : 'a t -> f:('a -> bool) -> intval subrange :
'a t ->
lower_bound:Key.t Base.Maybe_bound.t ->
upper_bound:Key.t Base.Maybe_bound.t ->
'a tval to_tree :
'a t ->
(Key.t, 'a, Key.comparator_witness) Base.Map.Using_comparator.Tree.tval to_sequence :
?order:[ `Increasing_key | `Decreasing_key ] ->
?keys_greater_or_equal_to:Key.t ->
?keys_less_or_equal_to:Key.t ->
'a t ->
(Key.t * 'a) Base.Sequence.tval binary_search :
'a t ->
compare:(key:Key.t -> data:'a -> 'key -> int) ->
Base.Binary_searchable.Which_target_by_key.t ->
'key ->
(Key.t * 'a) optionval binary_search_segmented :
'a t ->
segment_of:(key:Key.t -> data:'a -> [ `Left | `Right ]) ->
Base.Binary_searchable.Which_target_by_segment.t ->
(Key.t * 'a) optionval binary_search_subrange :
'a t ->
compare:(key:Key.t -> data:'a -> 'bound -> int) ->
lower_bound:'bound Base.Maybe_bound.t ->
upper_bound:'bound Base.Maybe_bound.t ->
'a tval key_set : _ t -> (Key.t, Key.comparator_witness) Base.Set.tval validate :
name:(Key.t -> Base.String.t) ->
'a Validate.check ->
'a t Validate.checkval validatei :
name:(Key.t -> Base.String.t) ->
(Key.t * 'a) Validate.check ->
'a t Validate.checkval quickcheck_observer :
Key.t Quickcheck.Observer.t ->
'v Quickcheck.Observer.t ->
'v t Quickcheck.Observer.tval quickcheck_shrinker :
Key.t Quickcheck.Shrinker.t ->
'v Quickcheck.Shrinker.t ->
'v t Quickcheck.Shrinker.tmodule Provide_of_sexp (Key : sig ... end) : sig ... endmodule Provide_bin_io
(Key : sig ... end) :
Map_intf.Binable.S1 with type 'a t := 'a tmodule Provide_hash (Key : Base.Hasher.S with type t := Key.t) : sig ... endinclude Sexpable.S1 with type 'a t := 'a t
val t_of_sexp : (Sexplib0.Sexp.t -> 'a) -> Sexplib0.Sexp.t -> 'a tval sexp_of_t : ('a -> Sexplib0.Sexp.t) -> 'a t -> Sexplib0.Sexp.tinclude Map_intf.Binable.S1 with type 'a t := 'a t
val bin_shape_t : Bin_prot.Shape.t -> Bin_prot.Shape.tval bin_size_t : ('a, 'a t) Bin_prot.Size.sizer1val bin_write_t : ('a, 'a t) Bin_prot.Write.writer1val bin_read_t : ('a, 'a t) Bin_prot.Read.reader1val __bin_read_t__ : ('a, int -> 'a t) Bin_prot.Read.reader1val bin_writer_t : ('a, 'a t) Bin_prot.Type_class.S1.writerval bin_reader_t : ('a, 'a t) Bin_prot.Type_class.S1.readerval bin_t : ('a, 'a t) Bin_prot.Type_class.S1.t sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page