Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Gen.Restarttype 'a t = unit -> 'a gentype 'a restartable = 'a tinclude S with type 'a t := 'a restartableval empty : 'a restartableEmpty generator, with no elements
val singleton : 'a -> 'a restartableOne-element generator
val return : 'a -> 'a restartableAlias to singleton
val repeat : 'a -> 'a restartableRepeat same element endlessly
val iterate : 'a -> ('a -> 'a) -> 'a restartableiterate x f is [x; f x; f (f x); f (f (f x)); ...]
val unfold : ('b -> ('a * 'b) option) -> 'b -> 'a restartableDual of fold, with a deconstructing operation. It keeps on unfolding the 'b value into a new 'b, and a 'a which is yielded, until None is returned.
val init : ?limit:int -> (int -> 'a) -> 'a restartableCalls the function, starting from 0, on increasing indices. If limit is provided and is a positive int, iteration will stop at the limit (excluded). For instance init ~limit:4 id will yield 0, 1, 2, and 3.
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 : _ restartable -> boolCheck whether the gen is empty. Pops an element, if any
val fold : ('b -> 'a -> 'b) -> 'b -> 'a restartable -> 'bFold on the generator, tail-recursively. Consumes the generator.
val reduce : ('a -> 'a -> 'a) -> 'a restartable -> 'aFold on non-empty sequences. Consumes the generator.
val scan : ('b -> 'a -> 'b) -> 'b -> 'a restartable -> 'b restartableLike fold, but keeping successive values of the accumulator. Consumes the generator.
val unfold_scan :
('b -> 'a -> 'b * 'c) ->
'b ->
'a restartable ->
'c restartableval iter : ('a -> unit) -> 'a restartable -> unitIterate on the gen, consumes it.
val iteri : (int -> 'a -> unit) -> 'a restartable -> unitIterate on elements with their index in the gen, from 0, consuming it.
val length : _ restartable -> intLength of an gen (linear time), consuming it
val map : ('a -> 'b) -> 'a restartable -> 'b restartableLazy map. No iteration is performed now, the function will be called when the result is traversed.
val mapi : (int -> 'a -> 'b) -> 'a restartable -> 'b restartableLazy map with indexing starting from 0. No iteration is performed now, the function will be called when the result is traversed.
val fold_map : ('b -> 'a -> 'b) -> 'b -> 'a restartable -> 'b restartableLazy 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.
val append : 'a restartable -> 'a restartable -> 'a restartableAppend the two gens; the result contains the elements of the first, then the elements of the second gen.
val flatten : 'a Gen_intf.gen restartable -> 'a restartableFlatten the generator of generators
val flat_map : ('a -> 'b Gen_intf.gen) -> 'a restartable -> 'b restartableMonadic 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) -> 'a -> 'a restartable -> boolIs the given element, member of the gen?
val take : int -> 'a restartable -> 'a restartableTake at most n elements
val drop : int -> 'a restartable -> 'a restartableDrop n elements
val nth : int -> 'a restartable -> 'an-th element, or Not_found
val take_nth : int -> 'a restartable -> 'a restartabletake_nth n g returns every element of g whose index is a multiple of n. For instance take_nth 2 (1--10) |> to_list will return 1;3;5;7;9
val filter : ('a -> bool) -> 'a restartable -> 'a restartableFilter out elements that do not satisfy the predicate.
val take_while : ('a -> bool) -> 'a restartable -> 'a restartableTake elements while they satisfy the predicate. The initial generator itself is not to be used anymore after this.
val fold_while :
('a -> 'b -> 'a * [ `Stop | `Continue ]) ->
'a ->
'b restartable ->
'aFold elements until ('a, `Stop) is indicated by the accumulator.
val drop_while : ('a -> bool) -> 'a restartable -> 'a restartableDrop elements while they satisfy the predicate. The initial generator itself should not be used anymore, only the result of drop_while.
val filter_map : ('a -> 'b option) -> 'a restartable -> 'b restartableMaps some elements to 'b, drop the other ones
val zip_index : 'a restartable -> (int * 'a) restartableZip elements with their index in the gen
val unzip : ('a * 'b) restartable -> 'a restartable * 'b restartableUnzip into two sequences, splitting each pair
val partition :
('a -> bool) ->
'a restartable ->
'a restartable * 'a restartablepartition p l returns the elements that satisfy p, and the elements that do not satisfy p
val for_all : ('a -> bool) -> 'a restartable -> boolIs the predicate true for all elements?
val exists : ('a -> bool) -> 'a restartable -> boolIs the predicate true for at least one element?
val min : ?lt:('a -> 'a -> bool) -> 'a restartable -> 'aMinimum element, according to the given comparison function.
val max : ?lt:('a -> 'a -> bool) -> 'a restartable -> 'aMaximum element, see min
val eq : ?eq:('a -> 'a -> bool) -> 'a restartable -> 'a restartable -> boolEquality of generators.
val lexico : ?cmp:('a -> 'a -> int) -> 'a restartable -> 'a restartable -> intLexicographic comparison of generators. If a generator is a prefix of the other one, it is considered smaller.
val compare : ?cmp:('a -> 'a -> int) -> 'a restartable -> 'a restartable -> intSynonym for lexico
val find : ('a -> bool) -> 'a restartable -> 'a optionfind p e returns the first element of e to satisfy p, or None.
val sum : int restartable -> intSum of all elements
val map2 :
('a -> 'b -> 'c) ->
'a restartable ->
'b restartable ->
'c restartableMap on the two sequences. Stops once one of them is exhausted.
val iter2 : ('a -> 'b -> unit) -> 'a restartable -> 'b restartable -> unitIterate on the two sequences. Stops once one of them is exhausted.
val fold2 :
('acc -> 'a -> 'b -> 'acc) ->
'acc ->
'a restartable ->
'b restartable ->
'accFold the common prefix of the two iterators
val for_all2 : ('a -> 'b -> bool) -> 'a restartable -> 'b restartable -> boolSucceeds if all pairs of elements satisfy the predicate. Ignores elements of an iterator if the other runs dry.
val exists2 : ('a -> 'b -> bool) -> 'a restartable -> 'b restartable -> boolSucceeds if some pair of elements satisfy the predicate. Ignores elements of an iterator if the other runs dry.
val zip_with :
('a -> 'b -> 'c) ->
'a restartable ->
'b restartable ->
'c restartableCombine common part of the gens (stops when one is exhausted)
val zip : 'a restartable -> 'b restartable -> ('a * 'b) restartableZip together the common part of the gens
val merge : 'a Gen_intf.gen restartable -> 'a restartablePick elements fairly in each sub-generator. The merge of gens e1, e2, ... picks elements in e1, e2, in e3, 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 restartable ->
'a restartable ->
'a restartableIntersection of two sorted sequences. Only elements that occur in both inputs appear in the output
val sorted_merge :
?cmp:('a -> 'a -> int) ->
'a restartable ->
'a restartable ->
'a restartableMerge two sorted sequences into a sorted sequence
val sorted_merge_n :
?cmp:('a -> 'a -> int) ->
'a restartable list ->
'a restartableSorted merge of multiple sorted sequences
val tee : ?n:int -> 'a restartable -> 'a Gen_intf.gen listDuplicate the gen into n generators (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 restartable -> 'a Gen_intf.gen listSplit the gen into n generators in a fair way. Elements with index = k mod n with go to the k-th gen. n default value is 2.
val interleave : 'a restartable -> 'a restartable -> 'a restartableinterleave a b yields an element of a, then an element of b, and so on. When a generator is exhausted, this behaves like the other generator.
val intersperse : 'a -> 'a restartable -> 'a restartablePut the separator element between all elements of the given gen
val product : 'a restartable -> 'b restartable -> ('a * 'b) restartableCartesian product, in no predictable order. Works even if some of the arguments are infinite.
val group : ?eq:('a -> 'a -> bool) -> 'a restartable -> 'a list restartableGroup equal consecutive elements together.
val uniq : ?eq:('a -> 'a -> bool) -> 'a restartable -> 'a restartableRemove consecutive duplicate elements. Basically this is like fun e -> map List.hd (group e).
val sort : ?cmp:('a -> 'a -> int) -> 'a restartable -> 'a restartableSort according to the given comparison function. The gen must be finite.
val sort_uniq : ?cmp:('a -> 'a -> int) -> 'a restartable -> 'a restartableSort and remove duplicates. The gen must be finite.
val chunks : int -> 'a restartable -> 'a array restartablechunks n e returns a generator of arrays of length n, composed of successive elements of e. The last array may be smaller than n
val permutations : 'a restartable -> 'a list restartablePermutations of the gen.
val permutations_heap : 'a restartable -> 'a array restartablePermutations of the gen, using Heap's algorithm.
val combinations : int -> 'a restartable -> 'a list restartableCombinations of given length. The ordering of the elements within each combination is unspecified. Example (ignoring ordering): combinations 2 (1--3) |> to_list = [[1;2]; [1;3]; [2;3]]
val power_set : 'a restartable -> 'a list restartableAll subsets of the gen (in no particular order). The ordering of the elements within each subset is unspecified.
val of_list : 'a list -> 'a restartableEnumerate elements of the list
val to_list : 'a restartable -> 'a listnon tail-call trasnformation to list, in the same order
val to_rev_list : 'a restartable -> 'a listTail call conversion to list, in reverse order (more efficient)
val to_array : 'a restartable -> 'a arrayConvert the gen to an array (not very efficient)
val of_array : ?start:int -> ?len:int -> 'a array -> 'a restartableIterate on (a slice of) the given array
val of_string : ?start:int -> ?len:int -> string -> char restartableIterate on bytes of the string
val to_string : char restartable -> stringConvert into a string
val to_buffer : Buffer.t -> char restartable -> unitConsumes the iterator and writes to the buffer
val rand_int : int -> int restartableRandom ints in the given range.
val int_range : ?step:int -> int -> int -> int restartableint_range ~step a b generates integers between a and b, included, with steps of length step (1 if omitted). a is assumed to be smaller than b, otherwise the result will be empty.
val lines : char restartable -> string restartableGroup together chars belonging to the same line
val unlines : string restartable -> char restartableExplode lines into their chars, adding a '\n' after each one
module Infix : sig ... endval (--) : int -> int -> int restartableSynonym for int_range ~by:1
val (>>=) : 'a restartable -> ('a -> 'b Gen_intf.gen) -> 'b restartableMonadic bind operator
val (>>|) : 'a restartable -> ('a -> 'b) -> 'b restartableInfix map operator
val (>|=) : 'a restartable -> ('a -> 'b) -> 'b restartableInfix map operator
val pp :
?start:string ->
?stop:string ->
?sep:string ->
?horizontal:bool ->
(Format.formatter -> 'a -> unit) ->
Format.formatter ->
'a restartable ->
unitPretty print the content of the generator on a formatter.
Use persistent_lazy to convert a one-shot generator into a restartable one. See GenMList.of_gen_lazy for more details on parameters.