Module Base.Queue
module type S = Base__.Queue_intf.Sinclude S with type 'a S.t := 'a t
include Sexpable.S1 with type 'a t := 'a t
val t_of_sexp : (Sexplib0.Sexp.t -> 'a) -> Sexplib0.Sexp.t -> 'a tval sexp_of_t : ('a -> Sexplib0.Sexp.t) -> 'a t -> Sexplib0.Sexp.t
include Indexed_container.S1 with type 'a t := 'a t
include Container.S1
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) Result.t) -> ('accum, 'e) 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 foldi : ('a t, 'a, _) Base__.Indexed_container_intf.foldival iteri : ('a t, 'a) Base__.Indexed_container_intf.iterival existsi : 'a t -> f:(int -> 'a -> bool) -> boolval for_alli : 'a t -> f:(int -> 'a -> bool) -> boolval counti : 'a t -> f:(int -> 'a -> bool) -> intval findi : 'a t -> f:(int -> 'a -> bool) -> (int * 'a) optionval find_mapi : 'a t -> f:(int -> 'a -> 'b option) -> 'b option
val singleton : 'a -> 'a tsingleton areturns a queue with one element.
val of_list : 'a list -> 'a tof_list listreturns a queuetwith the elements oflistin the same order as the elements oflist(i.e. the first element oftis the first element of the list).
val of_array : 'a array -> 'a tval init : int -> f:(int -> 'a) -> 'a tinit n ~fis equivalent toof_list (List.init n ~f).
val enqueue : 'a t -> 'a -> unitenqueue t aaddsato the end oft.
val enqueue_all : 'a t -> 'a list -> unitenqueue_all t listadds all elements inlisttotin order oflist.
val dequeue : 'a t -> 'a optiondequeue tremoves and returns the front element oft, if any.
val dequeue_exn : 'a t -> 'aval peek : 'a t -> 'a optionpeek treturns but does not remove the front element oft, if any.
val map : 'a t -> f:('a -> 'b) -> 'b tval mapi : 'a t -> f:(int -> 'a -> 'b) -> 'b tval concat_map : 'a t -> f:('a -> 'b list) -> 'b tCreates a new queue with elements equal to
List.concat_map ~f (to_list t).
val concat_mapi : 'a t -> f:(int -> 'a -> 'b list) -> 'b tval filter_map : 'a t -> f:('a -> 'b option) -> 'b tfilter_mapcreates a new queue with elements equal toList.filter_map ~f (to_list t).
val filter_mapi : 'a t -> f:(int -> 'a -> 'b option) -> 'b tval filter : 'a t -> f:('a -> bool) -> 'a tfilteris likefilter_map, except withList.filter.
val filteri : 'a t -> f:(int -> 'a -> bool) -> 'a tval filter_inplace : 'a t -> f:('a -> bool) -> unitfilter_inplace t ~fremoves all elements oftthat don't satisfyf. Iffraises,tis unchanged. This is inplace in that it modifiest; however, it uses space linear in the final length oft.
val filteri_inplace : 'a t -> f:(int -> 'a -> bool) -> unit
include Invariant.S1 with type 'a t := 'a t
val invariant : 'a Base__.Invariant_intf.inv -> 'a t Base__.Invariant_intf.inv
val create : ?capacity:int -> unit -> _ tCreate an empty queue.
val last : 'a t -> 'a optionlast treturns the most recently enqueued element int, if any.
val last_exn : 'a t -> 'aval blit_transfer : src:'a t -> dst:'a t -> ?len:int -> unit -> unitTransfers up to
lenelements from the front ofsrcto the end ofdst, removing them fromsrc. It is an error iflen < 0.Aside from a call to
set_capacity dstif needed, runs in O(len) time
val get : 'a t -> int -> 'aget t ireturns thei'th element int, where the 0'th element is at the front oftand thelength t - 1element is at the back.
val set : 'a t -> int -> 'a -> unitval capacity : _ t -> intReturns the current length of the backing array.
val set_capacity : _ t -> int -> unitset_capacity t csets the capacity oft's backing array to at leastmax c (length t). Ift's capacity changes, then this involves allocating a new backing array and copying the queue elements over.set_capacitymay decrease the capacity oft, ifc < capacity t.