Module type GenLabels_intf.S
val empty : 'a tEmpty generator, with no elements
val singleton : 'a -> 'a tOne-element generator
val repeat : 'a -> 'a tRepeat same element endlessly
val iterate : 'a -> ('a -> 'a) -> 'a titerate x fis[x; f x; f (f x); f (f (f x)); ...]
val unfold : ('b -> ('a * 'b) option) -> 'b -> 'a tDual of
fold, with a deconstructing operation. It keeps on unfolding the'bvalue into a new'b, and a'awhich is yielded, untilNoneis returned.
val init : ?limit:int -> (int -> 'a) -> 'a tCalls the function, starting from 0, on increasing indices. If
limitis provided and is a positive int, iteration will stop at the limit (excluded). For instanceinit ~limit:4 idwill yield 0, 1, 2, and 3.
Basic combinators
Note: those combinators, applied to generators (not restartable generators) consume their argument. Sometimes they consume it lazily, sometimes eagerly, but in any case once f gen has been called (with f a combinator), gen shouldn't be used anymore.
val is_empty : _ t -> boolCheck whether the gen is empty. Pops an element, if any
val fold : f:('b -> 'a -> 'b) -> init:'b -> 'a t -> 'bFold on the generator, tail-recursively. Consumes the generator.
val reduce : f:('a -> 'a -> 'a) -> 'a t -> 'aFold on non-empty sequences. Consumes the generator.
- raises Invalid_argument
on an empty gen
val scan : f:('b -> 'a -> 'b) -> init:'b -> 'a t -> 'b tLike
fold, but keeping successive values of the accumulator. Consumes the generator.
val unfold_scan : ('b -> 'a -> 'b * 'c) -> 'b -> 'a t -> 'c tA mix of
unfoldandscan. The current state is combined with the current element to produce a new state, and an output value of type 'c.- since
- 0.2.2
val iter : f:('a -> unit) -> 'a t -> unitIterate on the gen, consumes it.
val iteri : f:(int -> 'a -> unit) -> 'a t -> unitIterate on elements with their index in the gen, from 0, consuming it.
val length : _ t -> intLength of an gen (linear time), consuming it
val map : f:('a -> 'b) -> 'a t -> 'b tLazy map. No iteration is performed now, the function will be called when the result is traversed.
val mapi : f:(int -> 'a -> 'b) -> 'a t -> 'b tLazy map with indexing starting from 0. No iteration is performed now, the function will be called when the result is traversed.
- since
- 0.5
val fold_map : f:('b -> 'a -> 'b) -> init:'b -> 'a t -> 'b tLazy fold and map. No iteration is performed now, the function will be called when the result is traversed. The result is an iterator over the successive states of the fold.
- since
- 0.2.4
val append : 'a t -> 'a t -> 'a tAppend the two gens; the result contains the elements of the first, then the elements of the second gen.
val flat_map : f:('a -> 'b gen) -> 'a t -> 'b tMonadic bind; each element is transformed to a sub-gen which is then iterated on, before the next element is processed, and so on.
val mem : ?eq:('a -> 'a -> bool) -> x:'a -> 'a t -> boolIs the given element, member of the gen?
val nth : int -> 'a t -> 'an-th element, or Not_found
- raises Not_found
if the generator contains less than
narguments
val take_nth : int -> 'a t -> 'a ttake_nth n greturns every element ofgwhose index is a multiple ofn. For instancetake_nth 2 (1--10) |> to_listwill return1;3;5;7;9
val take_while : f:('a -> bool) -> 'a t -> 'a tTake elements while they satisfy the predicate. The initial generator itself is not to be used anymore after this.
val fold_while : f:('a -> 'b -> 'a * [ `Stop | `Continue ]) -> init:'a -> 'b t -> 'aFold elements until (
'a, `Stop) is indicated by the accumulator.- since
- 0.2.4
val drop_while : f:('a -> bool) -> 'a t -> 'a tDrop elements while they satisfy the predicate. The initial generator itself should not be used anymore, only the result of
drop_while.
val partition : f:('a -> bool) -> 'a t -> 'a t * 'a tpartition p lreturns the elements that satisfyp, and the elements that do not satisfyp
val for_all : f:('a -> bool) -> 'a t -> boolIs the predicate true for all elements?
val exists : f:('a -> bool) -> 'a t -> boolIs the predicate true for at least one element?
val min : ?lt:('a -> 'a -> bool) -> 'a t -> 'aMinimum element, according to the given comparison function.
- raises Invalid_argument
if the generator is empty
val max : ?lt:('a -> 'a -> bool) -> 'a t -> 'aMaximum element, see
min- raises Invalid_argument
if the generator is empty
val lexico : ?cmp:('a -> 'a -> int) -> 'a t -> 'a t -> intLexicographic comparison of generators. If a generator is a prefix of the other one, it is considered smaller.
val find : f:('a -> bool) -> 'a t -> 'a optionfind p ereturns the first element ofeto satisfyp, or None.
val sum : int t -> intSum of all elements
Multiple iterators
val map2 : f:('a -> 'b -> 'c) -> 'a t -> 'b t -> 'c tMap on the two sequences. Stops once one of them is exhausted.
val iter2 : f:('a -> 'b -> unit) -> 'a t -> 'b t -> unitIterate on the two sequences. Stops once one of them is exhausted.
val fold2 : f:('acc -> 'a -> 'b -> 'acc) -> init:'acc -> 'a t -> 'b t -> 'accFold the common prefix of the two iterators
val for_all2 : f:('a -> 'b -> bool) -> 'a t -> 'b t -> boolSucceeds if all pairs of elements satisfy the predicate. Ignores elements of an iterator if the other runs dry.
val exists2 : f:('a -> 'b -> bool) -> 'a t -> 'b t -> boolSucceeds if some pair of elements satisfy the predicate. Ignores elements of an iterator if the other runs dry.
Complex combinators
val merge : 'a gen t -> 'a tPick elements fairly in each sub-generator. The merge of gens
e1, e2, ...picks elements ine1,e2, ine3,e1,e2.... Once a generator is empty, it is skipped; when they are all empty, and none remains in the input, their merge is also empty. For instance,merge [1;3;5] [2;4;6]will be, in disorder,1;2;3;4;5;6.
val intersection : ?cmp:('a -> 'a -> int) -> 'a t -> 'a t -> 'a tIntersection of two sorted sequences. Only elements that occur in both inputs appear in the output
val sorted_merge : ?cmp:('a -> 'a -> int) -> 'a t -> 'a t -> 'a tMerge two sorted sequences into a sorted sequence
val sorted_merge_n : ?cmp:('a -> 'a -> int) -> 'a t list -> 'a tSorted merge of multiple sorted sequences
val tee : ?n:int -> 'a t -> 'a gen listDuplicate the gen into
ngenerators (default 2). The generators share the same underlying instance of the gen, so the optimal case is when they are consumed evenly
val round_robin : ?n:int -> 'a t -> 'a gen listSplit the gen into
ngenerators in a fair way. Elements withindex = k mod nwith go to the k-th gen.ndefault value is 2.
val interleave : 'a t -> 'a t -> 'a tinterleave a byields an element ofa, then an element ofb, and so on. When a generator is exhausted, this behaves like the other generator.
val product : 'a t -> 'b t -> ('a * 'b) tCartesian product, in no predictable order. Works even if some of the arguments are infinite.
val uniq : ?eq:('a -> 'a -> bool) -> 'a t -> 'a tRemove consecutive duplicate elements. Basically this is like
fun e -> map List.hd (group e).
val sort : ?cmp:('a -> 'a -> int) -> 'a t -> 'a tSort according to the given comparison function. The gen must be finite.
val sort_uniq : ?cmp:('a -> 'a -> int) -> 'a t -> 'a tSort and remove duplicates. The gen must be finite.
val chunks : int -> 'a t -> 'a array tchunks n ereturns a generator of arrays of lengthn, composed of successive elements ofe. The last array may be smaller thann
val permutations_heap : 'a t -> 'a array tPermutations of the gen, using Heap's algorithm.
- since
- 0.2.3
Basic conversion functions
val of_list : 'a list -> 'a tEnumerate elements of the list
val to_list : 'a t -> 'a listnon tail-call trasnformation to list, in the same order
val to_rev_list : 'a t -> 'a listTail call conversion to list, in reverse order (more efficient)
val to_array : 'a t -> 'a arrayConvert the gen to an array (not very efficient)
val of_array : ?start:int -> ?len:int -> 'a array -> 'a tIterate on (a slice of) the given array
val of_string : ?start:int -> ?len:int -> string -> char tIterate on bytes of the string
val to_string : char t -> stringConvert into a string
val to_buffer : Stdlib.Buffer.t -> char t -> unitConsumes the iterator and writes to the buffer
val rand_int : int -> int tRandom ints in the given range.
val int_range : ?step:int -> int -> int -> int tint_range ~step a bgenerates integers betweenaandb, included, with steps of lengthstep(1 if omitted).ais assumed to be smaller thanb.stepmust not be null, but it can be negative for decreasing integers.
val unlines : string t -> char tExplode lines into their chars, adding a
'\n'after each one- since
- 0.3
module Infix : sig ... endval (--) : int -> int -> int tSynonym for
int_range ~by:1
val pp : ?start:string -> ?stop:string -> ?sep:string -> ?horizontal:bool -> (Stdlib.Format.formatter -> 'a -> unit) -> Stdlib.Format.formatter -> 'a t -> unitPretty print the content of the generator on a formatter.