package async_rpc_kernel

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Query_id.SetSource

Sourcemodule Elt : sig ... end
Sourcemodule Tree : sig ... end
Sourceval compare : t -> t -> Base.Int.t
Sourceval length : t -> int
Sourceval is_empty : t -> bool
Sourceval iter : t -> f:(Elt.t -> unit) -> unit
Sourceval fold : t -> init:'accum -> f:('accum -> Elt.t -> 'accum) -> 'accum
Sourceval fold_result : t -> init:'accum -> f:('accum -> Elt.t -> ('accum, 'e) Base.Result.t) -> ('accum, 'e) Base.Result.t
Sourceval exists : t -> f:(Elt.t -> bool) -> bool
Sourceval for_all : t -> f:(Elt.t -> bool) -> bool
Sourceval count : t -> f:(Elt.t -> bool) -> int
Sourceval sum : (module Base__Container_intf.Summable with type t = 'sum) -> t -> f:(Elt.t -> 'sum) -> 'sum
Sourceval find : t -> f:(Elt.t -> bool) -> Elt.t option
Sourceval find_map : t -> f:(Elt.t -> 'a option) -> 'a option
Sourceval to_list : t -> Elt.t list
Sourceval to_array : t -> Elt.t array
Sourceval invariants : t -> bool
Sourceval mem : t -> Elt.t -> bool
Sourceval add : t -> Elt.t -> t
Sourceval remove : t -> Elt.t -> t
Sourceval union : t -> t -> t
Sourceval inter : t -> t -> t
Sourceval diff : t -> t -> t
Sourceval symmetric_diff : t -> t -> (Elt.t, Elt.t) Base.Either.t Base.Sequence.t
Sourceval compare_direct : t -> t -> int
Sourceval equal : t -> t -> bool
Sourceval is_subset : t -> of_:t -> bool
Sourceval are_disjoint : t -> t -> bool
Sourcemodule Named : sig ... end
Sourceval fold_until : t -> init:'b -> f: ('b -> Elt.t -> ('b, 'final) Base__.Container_intf.Export.Continue_or_stop.t) -> finish:('b -> 'final) -> 'final
Sourceval fold_right : t -> init:'b -> f:(Elt.t -> 'b -> 'b) -> 'b
Sourceval iter2 : t -> t -> f:([ `Both of Elt.t * Elt.t | `Left of Elt.t | `Right of Elt.t ] -> unit) -> unit
Sourceval filter : t -> f:(Elt.t -> bool) -> t
Sourceval partition_tf : t -> f:(Elt.t -> bool) -> t * t
Sourceval elements : t -> Elt.t list
Sourceval min_elt : t -> Elt.t option
Sourceval min_elt_exn : t -> Elt.t
Sourceval max_elt : t -> Elt.t option
Sourceval max_elt_exn : t -> Elt.t
Sourceval choose : t -> Elt.t option
Sourceval choose_exn : t -> Elt.t
Sourceval split : t -> Elt.t -> t * Elt.t option * t
Sourceval group_by : t -> equiv:(Elt.t -> Elt.t -> bool) -> t list
Sourceval find_exn : t -> f:(Elt.t -> bool) -> Elt.t
Sourceval nth : t -> int -> Elt.t option
Sourceval remove_index : t -> int -> t
Sourceval to_tree : t -> Tree.t
Sourceval to_sequence : ?order:[ `Decreasing | `Increasing ] -> ?greater_or_equal_to:Elt.t -> ?less_or_equal_to:Elt.t -> t -> Elt.t Base.Sequence.t
Sourceval binary_search_segmented : t -> segment_of:(Elt.t -> [ `Left | `Right ]) -> [ `First_on_right | `Last_on_left ] -> Elt.t option
Sourceval 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.Sequence.Merge_with_duplicates_element.t Base.Sequence.t
Sourceval to_map : t -> f:(Elt.t -> 'data) -> (Elt.t, 'data, Elt.comparator_witness) Base.Map.t
Sourceval empty : t
Sourceval singleton : Elt.t -> t
Sourceval union_list : t list -> t
Sourceval of_list : Elt.t list -> t
Sourceval of_array : Elt.t array -> t
Sourceval of_sorted_array : Elt.t array -> t Base.Or_error.t
Sourceval of_sorted_array_unchecked : Elt.t array -> t
Sourceval of_increasing_iterator_unchecked : len:int -> f:(int -> Elt.t) -> t
Sourceval stable_dedup_list : Elt.t list -> Elt.t list
Sourceval map : ('a, 'b) Base.Set.t -> f:('a -> Elt.t) -> t
Sourceval filter_map : ('a, 'b) Base.Set.t -> f:('a -> Elt.t option) -> t
Sourceval of_tree : Tree.t -> t
Sourceval of_hash_set : Elt.t Core_kernel.Hash_set.t -> t
Sourceval of_hashtbl_keys : (Elt.t, 'a) Core_kernel.Hashtbl.t -> t
Sourceval of_map_keys : (Elt.t, 'a, Elt.comparator_witness) Base.Map.t -> t
Sourcemodule Provide_of_sexp (Elt : sig ... end) : sig ... end
Sourcemodule Provide_bin_io (Elt : sig ... end) : sig ... end
Sourcemodule Provide_hash (Elt : sig ... end) : sig ... end
Sourceval t_of_sexp : Sexplib0__.Sexp.t -> t
Sourceval sexp_of_t : t -> Sexplib0__.Sexp.t
Sourceval bin_size_t : t Bin_prot.Size.sizer
Sourceval bin_write_t : t Bin_prot.Write.writer
Sourceval bin_read_t : t Bin_prot.Read.reader
Sourceval __bin_read_t__ : (int -> t) Bin_prot.Read.reader
Sourceval bin_shape_t : Bin_prot.Shape.t