Module Biocaml_std.Stream


module Stream: sig .. end

include Stream
val lines_of_chars : char t -> string t
val keep_whilei : (int -> 'a -> bool) -> 'a t -> 'a t
val keep_while : ('a -> bool) -> 'a t -> 'a t
val truncate : int -> 'a t -> 'a t
val skip_whilei : (int -> 'a -> bool) -> 'a t -> unit
val skip_while : ('a -> bool) -> 'a t -> unit
val fold : ('a -> 'b -> 'a) -> 'a -> 'b t -> 'a
val to_list : 'a t -> 'a list
val map : ('a -> 'b) -> 'a t -> 'b t
val is_empty : 'a t -> bool
val lines_of_channel : Pervasives.in_channel -> string Stream.t