package ke

  1. Overview
  2. Docs

Module Ke.RkeSource

include Sigs.R
Sourcetype ('a, 'b) t

The type of queues containing elements of type 'a.

Sourceexception Empty

Raised when peek_exn, pop_exn, N.keep_exn or N.shift_exn is applied to an empty queue.

Sourceval is_empty : ('a, 'b) t -> bool

Return true if the given queue is empty, false otherwise.

Sourceval create : ?capacity:int -> ('a, 'b) Bigarray.kind -> ('a, 'b) t

Return a new queue, initially empty.

Sourceval length : ('a, 'b) t -> int

Number of elements in the queue.

Sourceval push : ('a, 'b) t -> 'a -> unit

push q x adds the elements x at the end of the queue q.

Sourceval pop : ('a, 'b) t -> 'a option

pop q removes and returns the first element in queue q. If q is empty, it returns None.

Sourceval pop_exn : ('a, 'b) t -> 'a

pop_exn is the same as pop but it raises Empty when the given queue q is empty.

Sourceval peek : ('a, 'b) t -> 'a option

peek q returns the first element in the queue q, without removing it from the queue. If q is empty, it returns None.

Sourceval peek_exn : ('a, 'b) t -> 'a

Same as peek but it raises Empty if q is empty.

Sourceval cons : ('a, 'b) t -> 'a -> unit

cons q x adds element x at the front of the given queue q. It returns None if it fails.

Sourcemodule N : sig ... end
Sourceval iter : ('a -> unit) -> ('a, 'b) t -> unit

iter f q applies f in turn to all elements of q, from the least recently entered to the most recently entered. The queue itself is unchanged.

Sourceval fold : ('acc -> 'x -> 'acc) -> 'acc -> ('x, 'b) t -> 'acc

fold f a q is equivalent to List.fold_left f a l, where l is the list of q's elements. The queue remains unchanged.

OCaml

Innovation. Community. Security.