/usr/lib/ocaml/batteries/batStream.mli is in libbatteries-ocaml-dev 2.6.0-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 | (*
* Stream - streams and stream parsers
* Copyright (C) 1997 Daniel de Rauglaudre
* 2007 Zheng Li
* 2008 David Teller
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version,
* with the special exception on linking described in file LICENSE.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*)
(**
Streams and stream 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}.
{b 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 {{:http://www.pps.jussieu.fr/~li/software/sdflow/}Zheng Li's SDFlow}
This module replaces Stdlib's
{{:http://caml.inria.fr/pub/docs/manual-ocaml/libref/Stream.html}Stream}
module.
@author Zheng Li (SDFlow)
@author David Teller
@documents Stream
*)
type 'a t = 'a Stream.t
include BatEnum.Enumerable with type 'a enumerable = 'a t
include BatInterfaces.Mappable with type 'a mappable = 'a t
(** The type of streams holding values of type ['a]. *)
exception Failure
(** Raised by parsers when none of the first components of the stream
patterns is accepted. *)
exception Error of string
(** Raised by parsers when the first component of a stream pattern is
accepted, but one of the following components is rejected. *)
(** {6 Stream builders} *)
val from : (int -> 'a option) -> 'a 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. *)
val of_list : 'a list -> 'a t
(** Return the stream holding the elements of the list in the same
order. *)
val of_string : string -> char t
(** Return the stream of the characters of the string parameter. *)
val of_bytes : Bytes.t -> char t
(** Return the stream of the characters of the bytes parameter.
@since 2.3.0
*)
val of_channel : in_channel -> char t
(** Return the stream of the characters read from the input channel. *)
(** {6 Other 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.
*)
val of_fun : (unit -> 'a) -> 'a t
(** [Stream.of_fun 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. *)
(** {6 Stream iterator} *)
val iter : ('a -> unit) -> 'a t -> unit
(** [Stream.iter f s] scans the whole stream s, applying function [f]
in turn to each stream element encountered. *)
val foldl : ('a -> 'b -> 'a * bool option) -> 'a -> 'b 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 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 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 t -> 'a t
(** [filter test stream] picks all the elements satisfying [test] from [stream]
and return the results in the same order as a stream. *)
(** {6 Predefined parsers} *)
val next : 'a t -> 'a
(** Return the first element of the stream and remove it from the
stream. @raise Stream.Failure if the stream is empty. *)
val empty : 'a t -> unit
(** Return [()] if the stream is empty, else raise [Stream.Failure]. *)
(** {6 Useful functions} *)
val peek : 'a t -> 'a option
(** Return [Some] of "the first element" of the stream, or [None] if
the stream is empty. *)
val junk : 'a t -> unit
(** Remove the first element of the stream, possibly unfreezing
it before. *)
val count : 'a t -> int
(** Return the current count of the stream elements, i.e. the number
of the stream elements discarded. *)
val npeek : int -> 'a t -> 'a list
(** [npeek n] returns the list of the [n] first elements of
the stream, or all its remaining elements if less than [n]
elements are available. *)
(** {6 Conversion functions} *)
val enum : 'a t -> 'a BatEnum.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_enum : 'a BatEnum.t -> 'a 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_input : BatIO.input -> char t
(** Convert an [input] to a stream.*)
val to_list : 'a t -> 'a list
(** Convert a stream to a list *)
val to_string : char t -> string
(** convert stream of chars to string, using buffer *)
val to_string_fmt : ('a -> string, unit, string) format -> 'a t -> string
(** convert stream to string, using Printf with given format *)
val to_string_fun : ('a -> string) -> 'a t -> string
(** convert stream to string, using given conversion function *)
(** {6 Stream consumers} *)
val on_output: 'a BatIO.output-> char t -> unit
(** Convert an [output] to a stream.*)
(** {6 Computation over stream}
All the functions in this part are lazy.
*)
val map : ('a -> 'b) -> 'a t -> 'b 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 t -> 'b t -> 'c 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 t -> 'a t
(** [scanl f init stream] returns a stream of successive reduced
values from the left: [scanl f init [< 'e0; 'e1; ... >]] is
equivalent to
[[< 'init; '(f init e0); '(f (f init e0) e1); ... >]]
*)
val scan : ('a -> 'a -> 'a) -> 'a t -> 'a t
(** [scan] is similar to [scanl] but without the [init] value:
[scanl f init [< 'e0; 'e1; 'e2; ... >]] is equivalent to
[[< 'e0; '(f e0 e1); '(f (f e0 e1) e2); ... >]]
*)
val concat : 'a t t -> 'a t
(** concatenate a stream of streams *)
val concat_map : ('a -> 'b t) -> 'a t -> 'b t
(** Composition of {!concat} and {!map}.
[concat_map f e] is the same as [concat (map f e)].
@since 2.3.0
*)
val take : int -> 'a t -> 'a 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 t -> 'a 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 t -> 'a t
(** [take_while test stream] returns the longest (possibly empty) prefix of
[stream] of elements that satisfy [test]. *)
val drop_while : ('a -> bool) -> 'a t -> 'a t
(** [drop_while test stream] returns the remaining suffix of [take_while test
stream]. *)
(** {6 Streams pair arithmetic}
All the functions in this part are lazy.
*)
val dup : 'a t -> 'a t * 'a 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.
NOT IMPLEMENTED CORRECTLY - WILL RAISE Failure UNTIL CORRECT
IMPLEMENTATION FOUND
*)
val comb : 'a t * 'b t -> ('a * 'b) 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) t -> 'a t * 'b t
(** [split] is the opposite of [comb] *)
val merge : (bool -> 'a -> bool) -> 'a t * 'a t -> 'a 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 t -> 'a t * 'a 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. *)
(** {6 Stream arithmetic}
All the functions in this part are lazy.*)
val cons : 'a -> 'a t -> 'a t
(** [cons x stream] equals [[<'x; stream>]]. *)
val apnd : 'a t -> 'a t -> 'a t
(** [apnd fla flb] equals [[<fla;flb>]]. *)
val is_empty : 'a t -> bool
(** [is_empty stream] tests whether [stream] is empty. But note that it forces
the evaluation of the head element if any. *)
(** {6 Predefined parsers} *)
val next : 'a 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
(** {b Note} 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 -> unit
val to_string_fmt : fmt:('a -> string, unit, string) format -> 'a t -> string
val to_string_fun : fn:('a -> string) -> 'a t -> string
val foldl : f:('a -> 'b -> 'a * bool option) -> init:'a -> 'b t -> 'a
val foldr : f:('a -> 'b lazy_t -> 'b) -> init:'b -> 'a t -> 'b
val fold : f:('a -> 'a -> 'a * bool option) -> init:'a t -> 'a
val filter : f:('a -> bool) -> 'a t -> 'a t
val map : f:('a -> 'b) -> 'a t -> 'b t
val map2 : f:('a -> 'b -> 'c) -> 'a t -> 'b t -> 'c t
val scanl : f:('a -> 'b -> 'a) -> 'a -> 'b t -> 'a t
val scan : f:('a -> 'a -> 'a) -> 'a t -> 'a t
val take_while : f:('a -> bool) -> 'a t -> 'a t
val drop_while : f:('a -> bool) -> 'a t -> 'a t
val merge : f:(bool -> 'a -> bool) -> 'a t * 'a t -> 'a t
val switch : f:('a -> bool) -> 'a t -> 'a t * 'a t
end
(**/**)
(* The following is for system use only. Do not call directly. *)
val iapp : 'a t -> 'a t -> 'a t
val icons : 'a -> 'a t -> 'a t
val ising : 'a -> 'a t
val lapp : (unit -> 'a t) -> 'a t -> 'a t
val lcons : (unit -> 'a) -> 'a t -> 'a t
val lsing : (unit -> 'a) -> 'a t
val sempty : 'a t
val slazy : (unit -> 'a t) -> 'a t
val dump : ('a -> unit) -> 'a t -> unit
(**/**)
|