/usr/lib/ocaml/batteries/batVect.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 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 | (*
* Vect - Extensible arrays based on ropes
* Copyright (C) 2007 Mauricio Fernandez <mfp@acm.org>
* 2009 David Rajchenbach-Teller, LIFO, Universite d'Orleans
*
* 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
*)
(* Vect: extensible arrays based on ropes as described in
Boehm, H., Atkinson, R., and Plass, M. 1995. Ropes: an alternative to
strings. Softw. Pract. Exper. 25, 12 (Dec. 1995), 1315-1330.
Motivated by Luca de Alfaro's extensible array implementation Vec.
*)
(** Extensible vectors with constant-time append/prepend.
This module implements extensible arrays which work very much like ropes
as described in
{b Boehm, H., Atkinson, R., and Plass, M.} 1995. {e Ropes: an alternative to
strings.} Softw. Pract. Exper. 25, 12 (Dec. 1995), 1315-1330.
These vectors have some interesting properties:
- lower space overhead than other structures based on balanced trees such as Vec.
The overhead can be adjusted, allowing to make get faster at the expense of set
and viceversa.
- appending or prepending a small vector to an arbitrarily large one in amortized
constant time
- concat, substring, insert, remove operations in amortized logarithmic time
- access to and modification of vectors in logarithmic time
{8 Functional nature and persistence}
All operations but [destructive_set] (provided for efficient ephemeral usage)
are non-destructive: the original vect is never modified. When a new vect is
returned as the result of an operation, it will share as much data as possible
with its "parent". For instance, if a vect of length [n] undergoes [m]
operations (assume [n >> m]) like set, append or prepend, the modified vector
will only require [O(m)] space in addition to that taken by the original vect.
However, Vect is an amortized data structure, and its use in a persistent setting
can easily degrade its amortized time bounds. It is thus mainly intended to be used
ephemerally. In some cases, it is possible to use Vect persistently with the same
amortized bounds by explicitly rebalancing vects to be reused using [balance].
Special care must be taken to avoid calling [balance] too frequently; in the limit,
calling [balance] after each modification would defeat the purpose of amortization.
This module is not thread-safe.
@author Mauricio Fernandez
*)
type 'a t
(** The type of a polymorphic vect. *)
exception Out_of_bounds
(** Raised when an operation violates the bounds of the vect. *)
val max_length : int
(** Maximum length of the vect. *)
(** {6 Creation and conversions} *)
val empty : 'a t
(** The empty vect. *)
val singleton : 'a -> 'a t
(** Returns a vect of length 1 holding only the given element.*)
val of_array : 'a array -> 'a t
(** [of_array s] returns a vect corresponding to the array [s].
Operates in [O(n)] time. *)
val to_array : 'a t -> 'a array
(** [to_array r] returns an array corresponding to the vect [r]. *)
val to_list : 'a t -> 'a list
(** Returns a list with the elements contained in the vect. *)
val of_list : 'a list -> 'a t
val make : int -> 'a -> 'a t
(** [make i c] returns a vect of length [i] whose elements are all equal to
[c]; it is similar to Array.make *)
val init : int -> (int -> 'a) -> 'a t
(** [init n f] returns a fresh vect of length [n],
with element number [i] initialized to the result of [f i].
In other terms, [init n f] tabulates the results of [f]
applied to the integers [0] to [n-1].
@raise Invalid_argument if [n < 0] or [n > max_length].*)
(** {6 Properties } *)
val is_empty : 'a t -> bool
(** Returns whether the vect is empty or not. *)
val height : 'a t -> int
(** Returns the height (depth) of the vect. *)
val length : 'a t -> int
(** Returns the length of the vect ([O(1)]). *)
(** {6 Operations } *)
val balance : 'a t -> 'a t
(** [balance r] returns a balanced copy of the [r] vect. Note that vects are
automatically rebalanced when their height exceeds a given threshold, but
[balance] allows to invoke that operation explicity. *)
val concat : 'a t -> 'a t -> 'a t
(** [concat r u] concatenates the [r] and [u] vects. In general, it operates
in [O(log(min n1 n2))] amortized time.
Small vects are treated specially and can be appended/prepended in
amortized [O(1)] time. *)
val append : 'a -> 'a t -> 'a t
(** [append c r] returns a new vect with the [c] element at the end
in amortized [O(1)] time. *)
val prepend : 'a -> 'a t -> 'a t
(** [prepend c r] returns a new vect with the [c] character at the
beginning in amortized [O(1)] time. *)
val get : 'a t -> int -> 'a
(** [get v n] returns the (n+1)th element from the vect [v]; i.e.
[get v 0] returns the first element.
Operates in worst-case [O(log size)] time.
@raise Out_of_bounds if a character out of bounds is requested. *)
val at : 'a t -> int -> 'a
(** as [get] *)
val set : 'a t -> int -> 'a -> 'a t
(** [set v n c] returns a copy of the [v] vect where the (n+1)th element
(see also [get]) has been set to [c].
Operates in worst-case [O(log size)] time. *)
val modify : 'a t -> int -> ('a -> 'a) -> 'a t
(** [modify v n f] is equivalent to [set v n (f (get v n))], but
more efficient. Operates in worst-case [O(log size)] time. *)
val destructive_set : 'a t -> int -> 'a -> unit
(** [destructive_set n e v] sets the element of index [n] in the [v] vect
to [e]. {b This operation is destructive}, and will also affect vects
sharing the modified leaf with [v]. Use with caution. *)
val sub : 'a t -> int -> int -> 'a t
(** [sub m n r] returns a sub-vect of [r] containing all the elements
whose indexes range from [m] to [m + n - 1] (included).
@raise Out_of_bounds in the same cases as Array.sub.
Operates in worst-case [O(log size)] time. *)
val insert : int -> 'a t -> 'a t -> 'a t
(** [insert n r u] returns a copy of the [u] vect where [r] has been
inserted between the elements with index [n] and [n + 1] in the
original vect. The length of the new vect is
[length u + length r].
Operates in amortized [O(log(size r) + log(size u))] time. *)
val remove : int -> int -> 'a t -> 'a t
(** [remove m n r] returns the vect resulting from deleting the
elements with indexes ranging from [m] to [m + n - 1] (included)
from the original vect [r]. The length of the new vect is
[length r - n].
Operates in amortized [O(log(size r))] time. *)
(** {6 Conversion}*)
val enum : 'a t -> 'a BatEnum.t
(** Returns an enumeration of the elements of the vector.
Behavior of the enumeration is undefined if the contents of the vector changes afterwards.*)
val of_enum : 'a BatEnum.t -> 'a t
(** Build a vector from an enumeration.*)
val backwards : 'a t -> 'a BatEnum.t
(** Returns an enumeration of the elements of a vector, from last to first.
Behavior of the enumeration is undefined if the contents of the vector changes afterwards.*)
val of_backwards : 'a BatEnum.t -> 'a t
(** Build a vector from an enumeration, from last to first.*)
(** {6 Iteration and higher-order functions } *)
val iter : ('a -> unit) -> 'a t -> unit
(** [iter f r] applies [f] to all the elements in the [r] vect,
in order. *)
val iteri : (int -> 'a -> unit) -> 'a t -> unit
(** Operates like iter, but also passes the index of the character
to the given function. *)
val rangeiter : ('a -> unit) -> int -> int -> 'a t -> unit
(** [rangeiter f m n r] applies [f] to all the elements whose
indices [k] satisfy [m] <= [k] < [m + n].
It is thus equivalent to [iter f (sub m n r)], but does not
create an intermediary vect. [rangeiter] operates in worst-case
[O(n + log m)] time, which improves on the [O(n log m)] bound
from an explicit loop using [get].
@raise Out_of_bounds in the same cases as [sub]. *)
val fold_left : ('b -> 'a -> 'b ) -> 'b -> 'a t -> 'b
(** [fold_left f a r] computes [ f (... (f (f a r0) r1)...) rN-1 ]
where [rn = Vect.get n r ] and [N = length r]. *)
val fold : ('b -> 'a -> 'b ) -> 'b -> 'a t -> 'b
(** An alias for {!fold_left} *)
val reduce : ('a -> 'a -> 'a) -> 'a t -> 'a
(** as {!fold_left}, but no initial value - just applies reducing
function to elements from left to right. *)
val fold_right : ('a -> 'b -> 'b ) -> 'a t -> 'b -> 'b
(** [fold_right f r a] computes [ f (r0 ... (f rN-2 (f rN-1 a)) ...)) ]
where [rn = Vect.get n r ] and [N = length r]. *)
val foldi : (int -> 'b -> 'a -> 'b) -> 'b -> 'a t -> 'b
(** As {!fold}, but with the position of each value passed to the
folding function *)
val map : ('a -> 'b) -> 'a t -> 'b t
(** [map f v] returns a vect isomorphic to [v] where each element of index
[i] equals [f (get v i)]. Therefore, the height of the returned vect
is the same as that of the original one. Operates in [O(n)] time. *)
val mapi : (int -> 'a -> 'b) -> 'a t -> 'b t
(** Same as {!map}, but the
function is applied to the index of the element as first argument,
and the element itself as second argument. *)
(* NOT PROVIDED?
val id_map : ('a -> 'a) -> 'a t -> 'a t
(** [id_map f v] returns a vect isomorphic to [v] where each element of index
[i] equals [f (get v i)]. It is very similar to [map], but tries to share
as much data as possible with the original vect; for example,
[id_map (fun x -> x) v == v]. This can lead to significative space savings
if [f] leaves many values unmodified.
For each element, the new value [f x] and the old one [x] are compared
with [<>]. Operates in [O(n)] time. *)
*)
(**{6 Predicates}*)
val for_all : ('a -> bool) -> 'a t -> bool
(** [for_all p [a0; a1; ...; an]] checks if all elements of the vect
satisfy the predicate [p]. That is, it returns
[ (p a0) && (p a1) && ... && (p an)]. *)
val exists : ('a -> bool) -> 'a t -> bool
(** [exists p [a0; a1; ...; an]] checks if at least one element of
the vect satisfies the predicate [p]. That is, it returns
[ (p a0) || (p a1) || ... || (p an)]. *)
val find : ('a -> bool) -> 'a t -> 'a
(** [find p a] returns the first element of vect [a]
that satisfies the predicate [p].
@raise Not_found if there is no value that satisfies [p] in the
vect [a]. *)
val mem : 'a -> 'a t -> bool
(** [mem m a] is true if and only if [m] is equal to an element of [a]. *)
val memq : 'a -> 'a t -> bool
(** Same as {!Vect.mem} but uses physical equality instead of
structural equality to compare vect elements. *)
val findi : ('a -> bool) -> 'a t -> int
(** [findi p a] returns the index of the first element of vect [a]
that satisfies the predicate [p].
@raise Not_found if there is no value that satisfies [p] in the
vect [a]. *)
val filter : ('a -> bool) -> 'a t -> 'a t
(** [filter f v] returns a vect with the elements [x] from [v] such that
[f x] returns [true]. Operates in [O(n)] time. *)
val filter_map : ('a -> 'b option) -> 'a t -> 'b t
(** [filter_map f e] returns a vect consisting of all elements
[x] such that [f y] returns [Some x] , where [y] is an element
of [e]. *)
val find_all : ('a -> bool) -> 'a t -> 'a t
(** [find_all] is another name for {!Vect.filter}. *)
val partition : ('a -> bool) -> 'a t -> 'a t * 'a t
(** [partition p v] returns a pair of vects [(v1, v2)], where
[v1] is the vect of all the elements of [v] that
satisfy the predicate [p], and [v2] is the vect of all the
elements of [v] that do not satisfy [p].
The order of the elements in the input vect is preserved. *)
(** {6 Convenience Functions} *)
val first : 'a t -> 'a
val last : 'a t -> 'a
(** These return the first and last values in the vector *)
val shift : 'a t -> 'a * 'a t
(** Return the first element of a vector and its last [n-1] elements. *)
val pop : 'a t -> 'a * 'a t
(** Return the last element of a vector and its first [n-1] elements. *)
(** {6 Boilerplate code}*)
val print : ?first:string -> ?last:string -> ?sep:string -> ('a BatInnerIO.output -> 'b -> unit) -> 'a BatInnerIO.output -> 'b t -> unit
val compare : 'a BatOrd.comp -> 'a t BatOrd.comp
val equal : 'a BatOrd.eq -> 'a t BatOrd.eq
val ord : 'a BatOrd.ord -> 'a t BatOrd.ord
(**/**)
val invariants : _ t -> unit
(**/**)
(** {6 Functorial interface} *)
module type RANDOMACCESS =
sig
type 'a t
val empty : 'a t
val get : 'a t -> int -> 'a
val unsafe_get : 'a t -> int -> 'a
val set : 'a t -> int -> 'a -> unit
val unsafe_set : 'a t -> int -> 'a -> unit
val append : 'a t -> 'a t -> 'a t
val concat : 'a t list -> 'a t
val length : 'a t -> int
val copy : 'a t -> 'a t
val sub : 'a t -> int -> int -> 'a t
val make : int -> 'a -> 'a t
val iter : ('a -> unit) -> 'a t -> unit
val map : ('a -> 'b) -> 'a t -> 'b t
val fold_right : ('a -> 'b -> 'b) -> 'a t -> 'b -> 'b
val enum : 'a t -> 'a BatEnum.t
val backwards : 'a t -> 'a BatEnum.t
val of_enum : 'a BatEnum.t -> 'a t
val of_backwards : 'a BatEnum.t -> 'a t
end
module Make :
functor (R : RANDOMACCESS) ->
functor (PARAM : sig val max_height : int val leaf_size : int end) ->
sig
type 'a t
(** The type of a polymorphic vect. *)
exception Out_of_bounds
(** Raised when an operation violates the bounds of the vect. *)
val max_length : int
(** Maximum length of the vect.
No function detect when one tries to add more elements than
the container can hold. They create broken structures which may
cause other functions of this module to raise exceptions when
operating on them.
*)
(** {6 Creation and conversions} *)
val empty : 'a t
(** The empty vect. *)
val singleton : 'a -> 'a t
(** Returns a vect of length 1 holding only the given element.*)
val of_container : 'a R.t -> 'a t
(** [of_container s] returns a vect corresponding to the container [s].
Operates in [O(n)] time. *)
val to_container : 'a t -> 'a R.t
(** [to_container r] returns a container corresponding to the vect [r]. *)
val of_array : 'a array -> 'a t
(** [of_array s] returns a vect corresponding to the array [s].
Operates in [O(n)] time. *)
val to_array : 'a t -> 'a array
(** [to_array r] returns an array corresponding to the vect [r]. *)
val to_list : 'a t -> 'a list
(** Returns a list with the elements contained in the vect. *)
val of_list : 'a list -> 'a t
val make : int -> 'a -> 'a t
(** [make i c] returns a vect of length [i] whose elements are all equal to
[c]; it is similar to Array.make *)
val init : int -> (int -> 'a) -> 'a t
(** [init n f] returns a fresh vect of length [n],
with element number [i] initialized to the result of [f i].
In other terms, [init n f] tabulates the results of [f]
applied to the integers [0] to [n-1].
@raise Invalid_argument if [n < 0] or [n > max_length].*)
(** {6 Properties } *)
val is_empty : 'a t -> bool
(** Returns whether the vect is empty or not. *)
val height : 'a t -> int
(** Returns the height (depth) of the vect. *)
val length : 'a t -> int
(** Returns the length of the vect ([O(1)]). *)
(** {6 Operations } *)
val balance : 'a t -> 'a t
(** [balance r] returns a balanced copy of the [r] vect. Note that vects are
automatically rebalanced when their height exceeds a given threshold, but
[balance] allows to invoke that operation explicity. *)
val concat : 'a t -> 'a t -> 'a t
(** [concat r u] concatenates the [r] and [u] vects. In general, it operates
in [O(log(min n1 n2))] amortized time.
Small vects are treated specially and can be appended/prepended in
amortized [O(1)] time. *)
val append : 'a -> 'a t -> 'a t
(** [append c r] returns a new vect with the [c] element at the end
in amortized [O(1)] time. *)
val prepend : 'a -> 'a t -> 'a t
(** [prepend c r] returns a new vect with the [c] character at the
beginning in amortized [O(1)] time. *)
val get : 'a t -> int -> 'a
(** [get v n] returns the (n+1)th element from the vect [v]; i.e.
[get v 0] returns the first element.
Operates in worst-case [O(log size)] time.
@raise Out_of_bounds if a character out of bounds is requested. *)
val at : 'a t -> int -> 'a
(** as [get] *)
val set : 'a t -> int -> 'a -> 'a t
(** [set v n c] returns a copy of the [v] vect where the (n+1)th element
(see also [get]) has been set to [c].
Operates in worst-case [O(log size)] time. *)
val modify : 'a t -> int -> ('a -> 'a) -> 'a t
(** [modify v n f] is equivalent to [set v n (f (get v n))], but
more efficient. Operates in worst-case [O(log size)] time. *)
val destructive_set : 'a t -> int -> 'a -> unit
(** [destructive_set n e v] sets the element of index [n] in the [v] vect
to [e]. {b This operation is destructive}, and will also affect vects
sharing the modified leaf with [v]. Use with caution. *)
val sub : 'a t -> int -> int -> 'a t
(** [sub m n r] returns a sub-vect of [r] containing all the elements
whose indexes range from [m] to [m + n - 1] (included).
@raise Out_of_bounds in the same cases as Array.sub.
Operates in worst-case [O(log size)] time. *)
val insert : int -> 'a t -> 'a t -> 'a t
(** [insert n r u] returns a copy of the [u] vect where [r] has been
inserted between the elements with index [n] and [n + 1] in the
original vect. The length of the new vect is
[length u + length r].
Operates in amortized [O(log(size r) + log(size u))] time. *)
val remove : int -> int -> 'a t -> 'a t
(** [remove m n r] returns the vect resulting from deleting the
elements with indexes ranging from [m] to [m + n - 1] (included)
from the original vect [r]. The length of the new vect is
[length r - n].
Operates in amortized [O(log(size r))] time. *)
(** {6 Conversion}*)
val enum : 'a t -> 'a BatEnum.t
(** Returns an enumeration of the elements of the vector.
Behavior of the enumeration is undefined if the contents of the vector changes afterwards.*)
val of_enum : 'a BatEnum.t -> 'a t
(** Build a vector from an enumeration.*)
val backwards : 'a t -> 'a BatEnum.t
(** Returns an enumeration of the elements of a vector, from last to first.
Behavior of the enumeration is undefined if the contents of the vector changes afterwards.*)
val of_backwards : 'a BatEnum.t -> 'a t
(** Build a vector from an enumeration, from last to first.*)
(** {6 Iteration and higher-order functions } *)
val iter : ('a -> unit) -> 'a t -> unit
(** [iter f r] applies [f] to all the elements in the [r] vect,
in order. *)
val iteri : (int -> 'a -> unit) -> 'a t -> unit
(** Operates like iter, but also passes the index of the character
to the given function. *)
val rangeiter : ('a -> unit) -> int -> int -> 'a t -> unit
(** [rangeiter f m n r] applies [f] to all the elements whose
indices [k] satisfy [m] <= [k] < [m + n].
It is thus equivalent to [iter f (sub m n r)], but does not
create an intermediary vect. [rangeiter] operates in worst-case
[O(n + log m)] time, which improves on the [O(n log m)] bound
from an explicit loop using [get].
@raise Out_of_bounds in the same cases as [sub]. *)
val fold_left : ('b -> 'a -> 'b ) -> 'b -> 'a t -> 'b
(** [fold_left f a r] computes [ f (... (f (f a r0) r1)...) rN-1 ]
where [rn = Vect.get n r ] and [N = length r]. *)
val fold : ('b -> 'a -> 'b ) -> 'b -> 'a t -> 'b
(** An alias for {!fold_left} *)
val reduce : ('a -> 'a -> 'a) -> 'a t -> 'a
(** as {!fold_left}, but no initial value - just applies reducing
function to elements from left to right. *)
val fold_right : ('a -> 'b -> 'b ) -> 'a t -> 'b -> 'b
(** [fold_right f r a] computes [ f (r0 ... (f rN-2 (f rN-1 a)) ...)) ]
where [rn = Vect.get n r ] and [N = length r]. *)
val foldi : (int -> 'b -> 'a -> 'b) -> 'b -> 'a t -> 'b
(** As {!fold}, but with the position of each value passed to the
folding function *)
val map : ('a -> 'b) -> 'a t -> 'b t
(** [map f v] returns a vect isomorphic to [v] where each element of index
[i] equals [f (get v i)]. Therefore, the height of the returned vect
is the same as that of the original one. Operates in [O(n)] time. *)
val mapi : (int -> 'a -> 'b) -> 'a t -> 'b t
(** Same as {!map}, but the
function is applied to the index of the element as first argument,
and the element itself as second argument. *)
(* NOT PROVIDED?
val id_map : ('a -> 'a) -> 'a t -> 'a t
(** [id_map f v] returns a vect isomorphic to [v] where each element of index
[i] equals [f (get v i)]. It is very similar to [map], but tries to share
as much data as possible with the original vect; for example,
[id_map (fun x -> x) v == v]. This can lead to significative space savings
if [f] leaves many values unmodified.
For each element, the new value [f x] and the old one [x] are compared
with [<>]. Operates in [O(n)] time. *)
*)
(**{6 Predicates}*)
val for_all : ('a -> bool) -> 'a t -> bool
(** [for_all p [a0; a1; ...; an]] checks if all elements of the vect
satisfy the predicate [p]. That is, it returns
[ (p a0) && (p a1) && ... && (p an)]. *)
val exists : ('a -> bool) -> 'a t -> bool
(** [exists p [a0; a1; ...; an]] checks if at least one element of
the vect satisfies the predicate [p]. That is, it returns
[ (p a0) || (p a1) || ... || (p an)]. *)
val find : ('a -> bool) -> 'a t -> 'a
(** [find p a] returns the first element of vect [a]
that satisfies the predicate [p].
@raise Not_found if there is no value that satisfies [p] in the
vect [a]. *)
val mem : 'a -> 'a t -> bool
(** [mem m a] is true if and only if [m] is equal to an element of [a]. *)
val memq : 'a -> 'a t -> bool
(** Same as {!Vect.mem} but uses physical equality instead of
structural equality to compare vect elements. *)
val findi : ('a -> bool) -> 'a t -> int
(** [findi p a] returns the index of the first element of vect [a]
that satisfies the predicate [p].
@raise Not_found if there is no value that satisfies [p] in the
vect [a]. *)
val filter : ('a -> bool) -> 'a t -> 'a t
(** [filter f v] returns a vect with the elements [x] from [v] such that
[f x] returns [true]. Operates in [O(n)] time. *)
val filter_map : ('a -> 'b option) -> 'a t -> 'b t
(** [filter_map f e] returns a vect consisting of all elements
[x] such that [f y] returns [Some x] , where [y] is an element
of [e]. *)
val find_all : ('a -> bool) -> 'a t -> 'a t
(** [find_all] is another name for {!Vect.filter}. *)
val partition : ('a -> bool) -> 'a t -> 'a t * 'a t
(** [partition p v] returns a pair of vects [(v1, v2)], where
[v1] is the vect of all the elements of [v] that
satisfy the predicate [p], and [v2] is the vect of all the
elements of [v] that do not satisfy [p].
The order of the elements in the input vect is preserved. *)
(** {6 Convenience Functions} *)
val first : 'a t -> 'a
val last : 'a t -> 'a
(** These return the first and last values in the vector *)
val shift : 'a t -> 'a * 'a t
(** Return the first element of a vector and its last [n-1] elements. *)
val pop : 'a t -> 'a * 'a t
(** Return the last element of a vector and its first [n-1] elements. *)
(** {6 Boilerplate code}*)
(** {7 Printing}*)
val print : ?first:string -> ?last:string -> ?sep:string -> ('a BatInnerIO.output -> 'b -> unit) -> 'a BatInnerIO.output -> 'b t -> unit
(**/**)
val invariants : _ t -> unit
(**/**)
end
|