Module Filename.Hash_queue
module Key : Core_kernel__.Hash_queue_intf.Key with type t = tval sexp_of_t : ('a -> Ppx_sexp_conv_lib.Sexp.t) -> 'a t -> Ppx_sexp_conv_lib.Sexp.t
include Core_kernel.Container.S1 with type 'a t := 'a t
val mem : 'a t -> 'a -> equal:('a -> 'a -> bool) -> boolChecks whether the provided element is there, using
equal.
val length : 'a t -> intval is_empty : 'a t -> boolval iter : 'a t -> f:('a -> unit) -> unitval fold : 'a t -> init:'accum -> f:('accum -> 'a -> 'accum) -> 'accumfold t ~init ~freturnsf (... f (f (f init e1) e2) e3 ...) en, wheree1..enare the elements oft
val fold_result : 'a t -> init:'accum -> f:('accum -> 'a -> ('accum, 'e) Base.Result.t) -> ('accum, 'e) Base.Result.tfold_result t ~init ~fis a short-circuiting version offoldthat runs in theResultmonad. Iffreturns anError _, that value is returned without any additional invocations off.
val fold_until : 'a t -> init:'accum -> f:('accum -> 'a -> ('accum, 'final) Base__.Container_intf.Continue_or_stop.t) -> finish:('accum -> 'final) -> 'finalfold_until t ~init ~f ~finishis a short-circuiting version offold. IffreturnsStop _the computation ceases and results in that value. IffreturnsContinue _, the fold will proceed. Iffnever returnsStop _, the final result is computed byfinish.Example:
type maybe_negative = | Found_negative of int | All_nonnegative of { sum : int } (** [first_neg_or_sum list] returns the first negative number in [list], if any, otherwise returns the sum of the list. *) let first_neg_or_sum = List.fold_until ~init:0 ~f:(fun sum x -> if x < 0 then Stop (Found_negative x) else Continue (sum + x)) ~finish:(fun sum -> All_nonnegative { sum }) ;; let x = first_neg_or_sum [1; 2; 3; 4; 5] val x : maybe_negative = All_nonnegative {sum = 15} let y = first_neg_or_sum [1; 2; -3; 4; 5] val y : maybe_negative = Found_negative -3
val exists : 'a t -> f:('a -> bool) -> boolReturns
trueif and only if there exists an element for which the provided function evaluates totrue. This is a short-circuiting operation.
val for_all : 'a t -> f:('a -> bool) -> boolReturns
trueif and only if the provided function evaluates totruefor all elements. This is a short-circuiting operation.
val count : 'a t -> f:('a -> bool) -> intReturns the number of elements for which the provided function evaluates to true.
val sum : (module Base__.Container_intf.Summable with type t = 'sum) -> 'a t -> f:('a -> 'sum) -> 'sumReturns the sum of
f ifor alliin the container.
val find : 'a t -> f:('a -> bool) -> 'a optionReturns as an
optionthe first element for whichfevaluates to true.
val find_map : 'a t -> f:('a -> 'b option) -> 'b optionReturns the first evaluation of
fthat returnsSome, and returnsNoneif there is no such element.
val to_list : 'a t -> 'a listval to_array : 'a t -> 'a arrayval min_elt : 'a t -> compare:('a -> 'a -> int) -> 'a optionReturns a minimum (resp maximum) element from the collection using the provided
comparefunction, orNoneif the collection is empty. In case of a tie, the first element encountered while traversing the collection is returned. The implementation usesfoldso it has the same complexity asfold.
val max_elt : 'a t -> compare:('a -> 'a -> int) -> 'a option
val invariant : 'a t -> Core_kernel__.Import.unitval create : ?growth_allowed:Core_kernel__.Import.bool -> ?size:Core_kernel__.Import.int -> Core_kernel__.Import.unit -> 'a tcreate ()returns an empty queue. The argumentsgrowth_allowedandsizeare referring to the underlying hashtable.- parameter growth_allowed
defaults to true
- parameter size
initial size -- default to 16
val clear : 'a t -> Core_kernel__.Import.unitClears the queue.
Finding elements
val mem : 'a t -> Key.t -> Core_kernel__.Import.boolmem q kreturns true iff there is some (k, v) in the queue.
val lookup : 'a t -> Key.t -> 'a Core_kernel__.Import.optionlookup t kreturns the value of the key-value pair in the queue with key k, if there is one.
Adding, removing, and replacing elements
Note that even the non-*_exn versions can raise, but only if there is an ongoing iteration.
val enqueue : 'a t -> [ `back | `front ] -> Key.t -> 'a -> [ `Ok | `Key_already_present ]enqueue t back_or_front k vadds the key-value pair (k, v) to the front or back of the queue, returning`Okif the pair was added, or`Key_already_presentif there is already a (k, v') in the queue.
val enqueue_exn : 'a t -> [ `back | `front ] -> Key.t -> 'a -> Core_kernel__.Import.unitLike
enqueue, but it raises in the`Key_already_presentcase
val enqueue_back : 'a t -> Key.t -> 'a -> [ `Ok | `Key_already_present ]See
enqueue.enqueue_back t k vis the same asenqueue t `back k v
val enqueue_back_exn : 'a t -> Key.t -> 'a -> Core_kernel__.Import.unitSee
enqueue_exn.enqueue_back_exn t k vis the same asenqueue_exn t `back k v
val enqueue_front : 'a t -> Key.t -> 'a -> [ `Ok | `Key_already_present ]See
enqueue.enqueue_front t k vis the same asenqueue t `front k v
val enqueue_front_exn : 'a t -> Key.t -> 'a -> Core_kernel__.Import.unitSee
enqueue_exn.enqueue_front_exn t k vis the same asenqueue_exn t `front k v
val lookup_and_move_to_back : 'a t -> Key.t -> 'a Core_kernel__.Import.optionlookup_and_move_to_backfinds the key-value pair (k, v) and moves it to the back of the queue if it exists, otherwise returningNone.The
_exnversions of these functions raise if key-value pair does not exist.
val lookup_and_move_to_back_exn : 'a t -> Key.t -> 'aLike
lookup_and_move_to_back, but raises instead of returning an option
val lookup_and_move_to_front : 'a t -> Key.t -> 'a Core_kernel__.Import.optionLike
lookup_and_move_to_back, but moves element to the front of the queue
val lookup_and_move_to_front_exn : 'a t -> Key.t -> 'aLike
lookup_and_move_to_front, but raises instead of returning an option
val first : 'a t -> 'a Core_kernel__.Import.optionfirst treturns the front element of the queue, without removing it.
val first_with_key : 'a t -> (Key.t * 'a) Core_kernel__.Import.optionfirst_with_key treturns the front element of the queue and its key, without removing it.
val keys : 'a t -> Key.t Core_kernel__.Import.listkeys treturns the keys in the order of the queue.
val dequeue : 'a t -> [ `back | `front ] -> 'a Core_kernel__.Import.optiondequeue t front_or_backreturns the front or back element of the queue.
val dequeue_exn : 'a t -> [ `back | `front ] -> 'aLike
dequeue, but it raises if the queue is empty.
val dequeue_back : 'a t -> 'a Core_kernel__.Import.optiondequeue_back treturns the back element of the queue.
val dequeue_back_exn : 'a t -> 'aLike
dequeue_back, but it raises if the queue is empty.
val dequeue_front : 'a t -> 'a Core_kernel__.Import.optiondequeue_front treturns the front element of the queue.
val dequeue_front_exn : 'a t -> 'aLike
dequeue_front, but it raises if the queue is empty.
val dequeue_with_key : 'a t -> [ `back | `front ] -> (Key.t * 'a) Core_kernel__.Import.optiondequeue_with_key treturns the front or back element of the queue and its key.
val dequeue_with_key_exn : 'a t -> [ `back | `front ] -> Key.t * 'aLike
dequeue_with_key, but it raises if the queue is empty.
val dequeue_back_with_key : 'a t -> (Key.t * 'a) Core_kernel__.Import.optiondequeue_back_with_key treturns the back element of the queue and its key.
val dequeue_back_with_key_exn : 'a t -> Key.t * 'aLike
dequeue_back_with_key, but it raises if the queue is empty.
val dequeue_front_with_key : 'a t -> (Key.t * 'a) Core_kernel__.Import.optiondequeue_front_with_key treturns the front element of the queue and its key.
val dequeue_front_with_key_exn : 'a t -> Key.t * 'aLike
dequeue_front_with_key, but it raises if the queue is empty.
val dequeue_all : 'a t -> f:('a -> Core_kernel__.Import.unit) -> Core_kernel__.Import.unitdequeue_all t ~fdequeues every element of the queue and appliesfto each one. The dequeue order is from front to back.
val remove : 'a t -> Key.t -> [ `Ok | `No_such_key ]remove q kremoves the key-value pair with keykfrom the queue.
val remove_exn : 'a t -> Key.t -> Core_kernel__.Import.unitval replace : 'a t -> Key.t -> 'a -> [ `Ok | `No_such_key ]replace q k vchanges the value of keykin the queue tov.
val replace_exn : 'a t -> Key.t -> 'a -> Core_kernel__.Import.unitval drop : ?n:Core_kernel__.Import.int -> 'a t -> [ `back | `front ] -> Core_kernel__.Import.unitdrop ?n q back_or_frontdropsnelements (default 1) from the back or front of the queue. If the queue has fewer thannelements then it is cleared.
val drop_front : ?n:Core_kernel__.Import.int -> 'a t -> Core_kernel__.Import.unitEquivalent to
drop ?n q `front.
val drop_back : ?n:Core_kernel__.Import.int -> 'a t -> Core_kernel__.Import.unitEquivalent to
drop ?n q `back.
Iterating over elements
val iteri : 'a t -> f:(key:Key.t -> data:'a -> Core_kernel__.Import.unit) -> Core_kernel__.Import.unititer t ~fappliesfto each key and element of the queue.