package patdiff
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=fbe06078bdb58f3e0c165998ecb82de6983a173c62f0f9f3ae4e914e645204e1
md5=12319e1918cf37f2800fd5aef272b398
doc/patdiff.kernel/Patdiff_kernel/Format/Style/Set/Tree/index.html
Module Set.Tree
Source
include Core_kernel.Set_intf.Make_S_plain_tree(Elt).S
include Core_kernel.Set_intf.Creators_and_accessors0
with type ('a, 'b) set := ('a, 'b) Base.Set.Using_comparator.Tree.t
with type t := t
with type tree := t
with type elt := Elt.t
with type named := named
with type comparator_witness := Elt.comparator_witness
include Core_kernel.Set_intf.Accessors0
with type t := t
with type tree := t
with type elt := Elt.t
with type named := named
with type comparator_witness := Elt.comparator_witness
include Base.Set.Accessors0
with type t := t
with type tree := t
with type elt := Elt.t
with type named := named
with type comparator_witness := Elt.comparator_witness
include Base.Container.S0 with type t := t with type elt := Elt.t
iter
must allow exceptions raised in f
to escape, terminating the iteration cleanly. The same holds for all functions below taking an f
.
fold t ~init ~f
returns f (... f (f (f init e1) e2) e3 ...) en
, where e1..en
are the elements of t
.
val fold_result :
t ->
init:'accum ->
f:('accum -> Elt.t -> ('accum, 'e) Base.Result.t) ->
('accum, 'e) Base.Result.t
fold_result t ~init ~f
is a short-circuiting version of fold
that runs in the Result
monad. If f
returns an Error _
, that value is returned without any additional invocations of f
.
Returns true
if and only if there exists an element for which the provided function evaluates to true
. This is a short-circuiting operation.
Returns true
if and only if the provided function evaluates to true
for all elements. This is a short-circuiting operation.
Returns the number of elements for which the provided function evaluates to true.
val sum :
(module Base__.Container_intf.Summable with type t = 'sum) ->
t ->
f:(Elt.t -> 'sum) ->
'sum
Returns the sum of f i
for all i
in the container.
Returns as an option
the first element for which f
evaluates to true.
Returns the first evaluation of f
that returns Some
, and returns None
if there is no such element.
val merge_to_sequence :
?order:[ `Increasing | `Decreasing ] ->
?greater_or_equal_to:Elt.t ->
?less_or_equal_to:Elt.t ->
t ->
t ->
(Elt.t, Elt.t) Base.Sequence.Merge_with_duplicates_element.t Base.Sequence.t
val quickcheck_observer :
Elt.t Core_kernel.Quickcheck.Observer.t ->
t Core_kernel.Quickcheck.Observer.t
val quickcheck_shrinker :
Elt.t Core_kernel.Quickcheck.Shrinker.t ->
t Core_kernel.Quickcheck.Shrinker.t
include Core_kernel.Set_intf.Creators0
with type t := t
with type tree := t
with type elt := Elt.t
with type comparator_witness := Elt.comparator_witness
with type ('a, 'b) set := ('a, 'b) Base.Set.Using_comparator.Tree.t
include Base.Set.Creators0
with type t := t
with type tree := t
with type elt := Elt.t
with type comparator_witness := Elt.comparator_witness
with type ('a, 'b) set := ('a, 'b) Base.Set.Using_comparator.Tree.t
val quickcheck_generator :
Elt.t Core_kernel.Quickcheck.Generator.t ->
t Core_kernel.Quickcheck.Generator.t