Module Frenetic_netkat.Fdd.Action.Par.Tree
type t = (Elt.t, Elt.comparator_witness) Core_kernel__.Set_intf.Tree.tval compare : t ‑> t ‑> Core_kernel__.Import.inttype named = (Elt.t, Elt.comparator_witness) Core_kernel__.Set_intf.Tree.Named.tval iter : t ‑> f:(Elt.t ‑> unit) ‑> unitval fold : t ‑> init:'accum ‑> f:('accum ‑> Elt.t ‑> 'accum) ‑> 'accumval fold_result : t ‑> init:'accum ‑> f:('accum ‑> Elt.t ‑> ('accum, 'e) Base__.Result.t) ‑> ('accum, 'e) Base__.Result.tval exists : t ‑> f:(Elt.t ‑> bool) ‑> boolval for_all : t ‑> f:(Elt.t ‑> bool) ‑> boolval count : t ‑> f:(Elt.t ‑> bool) ‑> intval sum : (module Base__.Commutative_group.S with type t = 'sum) ‑> t ‑> f:(Elt.t ‑> 'sum) ‑> 'sumval find : t ‑> f:(Elt.t ‑> bool) ‑> Elt.t optionval find_map : t ‑> f:(Elt.t ‑> 'a option) ‑> 'a optionval to_list : t ‑> Elt.t listval to_array : t ‑> Elt.t arrayval invariants : t ‑> boolval mem : t ‑> Elt.t ‑> boolval add : t ‑> Elt.t ‑> tval remove : t ‑> Elt.t ‑> tval symmetric_diff : t ‑> t ‑> (Elt.t, Elt.t) Base__.Either.t Base__.Sequence.tval compare_direct : t ‑> t ‑> intval equal : t ‑> t ‑> boolval is_subset : t ‑> of_:t ‑> boolval subset : t ‑> t ‑> bool- Deprecated [since 2016-09] Replace [Set.subset t1 t2] with [Set.is_subset t1 ~of_:t2]
module Named : sig ... endval fold_until : t ‑> init:'b ‑> f:('b ‑> Elt.t ‑> ('b, 'final) Base__.Set_intf.Continue_or_stop.t) ‑> finish:('b ‑> 'final) ‑> 'finalval fold_right : t ‑> init:'b ‑> f:(Elt.t ‑> 'b ‑> 'b) ‑> 'bval iter2 : t ‑> t ‑> f:([ `Both of Elt.t * Elt.t | `Left of Elt.t | `Right of Elt.t ] ‑> unit) ‑> unitval filter : t ‑> f:(Elt.t ‑> bool) ‑> tval partition_tf : t ‑> f:(Elt.t ‑> bool) ‑> t * tval elements : t ‑> Elt.t listval min_elt : t ‑> Elt.t optionval min_elt_exn : t ‑> Elt.tval max_elt : t ‑> Elt.t optionval max_elt_exn : t ‑> Elt.tval choose : t ‑> Elt.t optionval choose_exn : t ‑> Elt.tval split : t ‑> Elt.t ‑> t * Elt.t option * tval group_by : t ‑> equiv:(Elt.t ‑> Elt.t ‑> bool) ‑> t listval find_exn : t ‑> f:(Elt.t ‑> bool) ‑> Elt.tval find_index : t ‑> int ‑> Elt.t option- Deprecated [since 2016-10] Use [nth]
val nth : t ‑> int ‑> Elt.t optionval remove_index : t ‑> int ‑> tval to_sequence : ?order:[ `Decreasing | `Increasing ] ‑> ?greater_or_equal_to:Elt.t ‑> ?less_or_equal_to:Elt.t ‑> t ‑> Elt.t Base__.Sequence.tval merge_to_sequence : ?order:[ `Decreasing | `Increasing ] ‑> ?greater_or_equal_to:Elt.t ‑> ?less_or_equal_to:Elt.t ‑> t ‑> t ‑> (Elt.t, Elt.t) Base__.Set_intf.Merge_to_sequence_element.t Base__.Sequence.tval to_map : t ‑> f:(Elt.t ‑> 'data) ‑> (Elt.t, 'data, Elt.comparator_witness) Core_kernel__.Map.tval obs : Elt.t Core_kernel__.Quickcheck.Observer.t ‑> t Core_kernel__.Quickcheck.Observer.tval shrinker : Elt.t Core_kernel__.Quickcheck.Shrinker.t ‑> t Core_kernel__.Quickcheck.Shrinker.tval singleton : Elt.t ‑> tval union_list : t list ‑> tval of_list : Elt.t list ‑> tval of_array : Elt.t array ‑> tval of_sorted_array : Elt.t array ‑> t Base__.Or_error.tval of_sorted_array_unchecked : Elt.t array ‑> tval of_increasing_iterator_unchecked : len:int ‑> f:(int ‑> Elt.t) ‑> tval stable_dedup_list : Elt.t list ‑> Elt.t listval map : ('a, 'b) Core_kernel__.Set_intf.Tree.t ‑> f:('a ‑> Elt.t) ‑> tval filter_map : ('a, 'b) Core_kernel__.Set_intf.Tree.t ‑> f:('a ‑> Elt.t option) ‑> tval of_hash_set : Elt.t Core_kernel__.Hash_set.t ‑> tval of_hashtbl_keys : (Elt.t, 'a) Core_kernel__.Hashtbl.t ‑> tval of_map_keys : (Elt.t, 'a, Elt.comparator_witness) Core_kernel__.Map.t ‑> tval gen : Elt.t Core_kernel__.Quickcheck.Generator.t ‑> t Core_kernel__.Quickcheck.Generator.tval t_of_sexp : Base__.Ppx_sexp_conv_lib.Sexp.t ‑> tval sexp_of_t : t ‑> Base__.Ppx_sexp_conv_lib.Sexp.t