VectorSlice
structure
signature VECTOR_SLICE
structure VectorSlice
:> VECTOR_SLICE
The VectorSlice
structure provides an abstraction of subvectors for polymorphic vectors. A slice
value can be viewed as a triple (v, i, n)
, where v is the underlying vector, i is the starting index, and n is the length of the subvector, with the constraint that 0 <= i <= i + n <= |v|, where |v| is the length of v. Slices provide a convenient notation for specifying and operating on a contiguous subset of elements in a vector.
type 'a slice
val length : 'a slice -> int
val sub : 'a slice * int -> 'a
val full : 'a Vector.vector -> 'a slice
val slice : 'a Vector.vector * int * int option -> 'a slice
val subslice : 'a slice * int * int option -> 'a slice
val base : 'a slice -> 'a Vector.vector * int * int
val vector : 'a slice -> 'a Vector.vector
val concat : 'a slice list -> 'a Vector.vector
val isEmpty : 'a slice -> bool
val getItem : 'a slice -> ('a * 'a slice) option
val appi : (int * 'a -> unit) -> 'a slice -> unit
val app : ('a -> unit) -> 'a slice -> unit
val mapi : (int * 'a -> 'b) -> 'a slice -> 'b Vector.vector
val map : ('a -> 'b) -> 'a slice -> 'b Vector.vector
val foldli : (int * 'a * 'b -> 'b) -> 'b -> 'a slice -> 'b
val foldri : (int * 'a * 'b -> 'b) -> 'b -> 'a slice -> 'b
val foldl : ('a * 'b -> 'b) -> 'b -> 'a slice -> 'b
val foldr : ('a * 'b -> 'b) -> 'b -> 'a slice -> 'b
val findi : (int * 'a -> bool)
-> 'a slice -> (int * 'a) option
val find : ('a -> bool) -> 'a slice -> 'a option
val exists : ('a -> bool) -> 'a slice -> bool
val all : ('a -> bool) -> 'a slice -> bool
val collate : ('a * 'a -> order)
-> 'a slice * 'a slice -> order
length sl
sub (sl, i)
Subscript
exception is raised.
full vec
slice(vec, 0, NONE)
slice (vec, i, sz)
NONE
, the slice includes all of the elements to the end of the vector, i.e., vec[i..|vec|-1]. This raises Subscript
if i < 0
or |vec| < i. If sz is SOME
(j)
, the slice has length j, that is, it corresponds to vec[i..i+j-1]
. It raises Subscript
if i < 0 or j < 0 or |arr| < i + j. Note that, if defined, slice
returns an empty slice when i = |vec|.
subslice (sl, i, sz)
NONE
, the slice includes all of the elements to the end of the slice, i.e., sl[i..|sl|-1]. This raises Subscript
if i < 0
or |sl| < i. If sz is SOME
(j)
, the slice has length j, that is, it corresponds to sl[i..i+j-1]
. It raises Subscript
if i < 0 or j < 0 or |sl| < i + j. Note that, if defined, slice
returns an empty slice when i = |sl|.
base sl
(vec, i, n)
representing the concrete representation of the slice. vec is the underlying vector, i is the starting index, and n is the length of the slice.
vector sl
Vector.tabulate (length sl, fn i => sub (sl, i))
concat l
Size
if the sum of all the lengths is greater than Vector.maxLen
.
isEmpty sl
true
if sl has length 0.
getItem sl
NONE
if sl is empty.
appi f sl
app f sl
appi
function supplies f with the index of the corresponding element in the slice. The expression app f sl
is equivalent to appi (f o #2) sl
.
mapi f sl
map f sl
mapi
function supplies both the element and the element's index in the slice to the function f. The first expression is equivalent to:
let fun ff (i,a,l) = f(i,a)::l in Vector.fromList (rev (foldli ff [] sl)) endThe latter expression is equivalent to:
mapi (f o #2) sl
foldli f init sl
foldri f init sl
foldl f init sl
foldr f init sl
foldli
and foldl
apply the function f from left to right (increasing indices), while the functions foldri
and foldr
work from right to left (decreasing indices). The more general functions foldli
and foldri
supply f with the index of the corresponding element in the slice.
Refer to the MONO_ARRAY
manual pages for reference implementations of the indexed versions.
The expression foldl f init sl
is equivalent to:
foldli (fn (_, a, x) => f(a, x)) init slThe analogous equivalence holds for
foldri
and foldr
.
findi f sl
find f sl
true
value is returned. If this occurs, the functions return the element; otherwise, they return NONE
. The more general version findi
also supplies f with the index of the element in the slice and, upon finding an entry satisfying the predicate, returns that index with the element.
exists f sl
f(x)
evaluates to true
; it returns true
if such an x exists and false
otherwise.
all f sl
f(x)
evaluates to false
; it returns false
if such an x exists and true
otherwise. It is equivalent to not
(exists
(not
o f
) sl))
.
collate f (sl, sl2)
Array
,ArraySlice
,MONO_VECTOR
Generated October 02, 2003
Last Modified June 20, 2000
Comments to John Reppy.
This document may be distributed freely over the internet as long as the copyright notice and license terms below are prominently displayed within every machine-readable copy.
Copyright © 2003 AT&T and Lucent Technologies. All rights reserved.
Permission is granted for internet users to make one paper copy for their
own personal use. Further hardcopy reproduction is strictly prohibited.
Permission to distribute the HTML document electronically on any medium
other than the internet must be requested from the copyright holders by
contacting the editors.
Printed versions of the SML Basis Manual are available from Cambridge
University Press.
To order, please visit
www.cup.org (North America) or
www.cup.cam.ac.uk (outside North America). |