Module BatStream


module BatStream: sig .. end
Streams and stream parsers

Note This module is provided essentially for backwards-compatibility. If you feel like using Stream.t, please take a look at BatEnum or LazyList.

This module is based on Zheng Li's SDFlow

This module extends Stdlib's Stream module, go there for documentation on the rest of the functions and types.



Streams and parsers.

Streams are a read-and-forget data structure, comparable to enumerations. In Batteries Included, streams are deprecated in favor of enumerations, defined in module BatEnum.

include BatEnum.Enumerable
include BatInterfaces.Mappable

Conversion functions

val enum : 'a Stream.t -> 'a BatEnum.t
Convert an enumeration to a stream. Reading the resulting stream will consume elements from the enumeration. This is the preferred manner of creating a stream.
val of_enum : 'a BatEnum.t -> 'a Stream.t
Convert a stream to an enumeration. Reading the resulting enumeration will consume elements from the stream. This is the preferred manner of converting from a stream to any other data structure.
val of_input : BatIO.input -> char Stream.t
Convert an input to a stream.

Stream consumers

val on_output : 'a BatIO.output -> char Stream.t -> unit
Convert an output to a stream.

Stream builders

Warning: these functions create streams with fast access; it is illegal to mix them with streams built with [< >]; would raise Failure when accessing such mixed streams.

Other constructors

val of_fun : (unit -> 'a) -> 'a Stream.t
Stream.from f returns a stream built from the function f. To create a new stream element, the function f is called with the current stream count. The user function f must return either Some <value> for a value or None to specify the end of the stream.

Stream iterators

val foldl : ('a -> 'b -> 'a * bool option) -> 'a -> 'b Stream.t -> 'a
foldl f init stream is a lazy fold_left. f accu elt should return (new_accu, state) where new_accu is normal accumulation result, and state is a flag representing whether the computation should continue and whether the last operation is valid: None means continue, Some b means stop where b = true means the last addition is still valid and b = false means the last addition is invalid and should be revert.
val foldr : ('a -> 'b lazy_t -> 'b) -> 'b -> 'a Stream.t -> 'b
foldr f init stream is a lazy fold_right. Unlike the normal fold_right, the accumulation parameter of f elt accu is lazy, hence it can decide not to force the evaluation of accu if the current element elt can determin the result by itself.
val fold : ('a -> 'a -> 'a * bool option) -> 'a Stream.t -> 'a
fold is foldl without initialization value, where the first element of stream is taken as init. It raises End_of_stream exception when the input stream is empty.
val filter : ('a -> bool) -> 'a Stream.t -> 'a Stream.t
filter test stream picks all the elements satisfying test from stream and return the results in the same order as a stream.

Computation over stream

All the functions in this part are lazy.

val map : ('a -> 'b) -> 'a Stream.t -> 'b Stream.t
map f stream applies f in turn to elements from stream and return the results as a stream in the same order.
val map2 : ('a -> 'b -> 'c) -> 'a Stream.t -> 'b Stream.t -> 'c Stream.t
map2 f streama streamb applies f in turn to elements of corresponding positions from streama and streamb. The results are constructed in the same order as a stream. If one stream is short, excess elements of the longer stream are ignored.
val scanl : ('a -> 'b -> 'a) -> 'a -> 'b Stream.t -> 'a Stream.t
scanl f init stream returns a stream of successive reduced values from the left: scanl f init [<'e1;'e2;..>] = [<'init; '((f init e1) as e1'); '(f e1' e2); ..>]
val scan : ('a -> 'a -> 'a) -> 'a Stream.t -> 'a Stream.t
scan is similar to scanl but without the init value: scan f [<'e1;'e2;..>] = [<'e1;'(f e1 e2);..>].
val concat : 'a Stream.t Stream.t -> 'a Stream.t
concatenate a stream of streams
val take : int -> 'a Stream.t -> 'a Stream.t
take n stream returns the prefix of stream of length n, or stream itself if n is greater than the length of stream
val drop : int -> 'a Stream.t -> 'a Stream.t
drop n stream returns the suffix of stream after the first n elements, or a empty stream if n is greater than the length of stream
val take_while : ('a -> bool) -> 'a Stream.t -> 'a Stream.t
take_while test stream returns the longest (possibly empty) prefix of stream of elements that satisfy test.
val drop_while : ('a -> bool) -> 'a Stream.t -> 'a Stream.t
drop_while test stream returns the remaining suffix of take_while test stream.

Streams pair arithmetic

All the functions in this part are lazy.

val dup : 'a Stream.t -> 'a Stream.t * 'a Stream.t
dup stream returns a pair of streams which are identical to stream. Note that stream is a destructive data structure, the point of dup is to return two streams can be used independently.
val comb : 'a Stream.t * 'b Stream.t -> ('a * 'b) Stream.t
comb transform a pair of stream into a stream of pairs of corresponding elements. If one stream is short, excess elements of the longer stream are ignored.
val split : ('a * 'b) Stream.t -> 'a Stream.t * 'b Stream.t
split is the opposite of comb
val merge : (bool -> 'a -> bool) -> 'a Stream.t * 'a Stream.t -> 'a Stream.t
merge test (streama, streamb) merge the elements from streama and streamb into a single stream. The bool type here represents the id of the two input streams where true is the first and false represents the second. The test function is applied to each element of the output stream together with the id of the input stream from which it was extracted, to decide which stream should the next element come from. The first element is always taken from streama. When a stream runs out of elements, the merge process will continue to take elements from the other stream until both streams reach their ends.
val switch : ('a -> bool) -> 'a Stream.t -> 'a Stream.t * 'a Stream.t
switch test stream split stream into two streams, where the first stream have all the elements satisfying test, the second stream is opposite. The order of elements in the source stream is preserved.

Stream arithmetic

All the functions in this part are lazy.

val cons : 'a -> 'a Stream.t -> 'a Stream.t
cons x stream equals [<'x; stream>].
val apnd : 'a Stream.t -> 'a Stream.t -> 'a Stream.t
apnd fla flb equals [<fla;flb>].
val is_empty : 'a Stream.t -> bool
is_empty stream tests whether stream is empty. But note that it forces the evaluation of the head element if any.

Predefined parsers

val next : 'a Stream.t -> 'a
Return the first element of the stream and remove it from the stream. Raise Stream.Failure if the stream is empty.
module StreamLabels: sig .. end