package patdiff
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=089e88efbbda5c7f1249d0b427336fa56679c52d7bc94b76a2bc7df8ade52d13
doc/patdiff.kernel/Patdiff_kernel/Format/Style/Set/index.html
Module Style.Set
Source
module Elt : sig ... end
include Core.Set_intf.S_plain with module Elt := Elt
include Ppx_compare_lib.Comparable.S with type t := t
include Core.Set_intf.Creators_and_accessors0
with type ('a, 'b) set := ('a, 'b) Base.Set.t
with type t := t
with type tree :=
(Elt.t, Elt.comparator_witness) Base.Set.Using_comparator.Tree.t
with type elt := Elt.t
with type named := named
with type comparator_witness := Elt.comparator_witness
include Core.Set_intf.Accessors0
with type t := t
with type tree :=
(Elt.t, Elt.comparator_witness) Base.Set.Using_comparator.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 :=
(Elt.t, Elt.comparator_witness) Base.Set.Using_comparator.Tree.t
with type elt := Elt.t
with type named := named
with type comparator_witness := Elt.comparator_witness
val length : t -> int
val is_empty : t -> bool
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 invariants : t -> bool
module Named : sig ... end
val to_tree :
t ->
(Elt.t, Elt.comparator_witness) Base.Set.Using_comparator.Tree.t