BatStream.StreamLabelsNote This module is provided essentially for backwards-compatibility. If you feel like using Stream.t, please take a look at BatEnum or LazyList and GenParser.
See the complete Stream module for the function documentations.
val iter : f:('a -> unit) -> 'a t -> unitval to_string_fmt :
fmt:('a -> string, unit, string) Stdlib.format ->
'a t ->
stringval to_string_fun : fn:('a -> string) -> 'a t -> stringval foldl : f:('a -> 'b -> 'a * bool option) -> init:'a -> 'b t -> 'aval foldr : f:('a -> 'b lazy_t -> 'b) -> init:'b -> 'a t -> 'bval fold : f:('a -> 'a -> 'a * bool option) -> init:'a t -> 'a