Array
structure
signature ARRAY
structure Array
:> ARRAY
The Array
structure defines polymorphic arrays, mutable sequences with constant-time access and update.
Arrays have a special equality property: two arrays are equal if they are the same array, i.e., created by the same call to a primitive array constructor such as array
, fromList
, etc.; otherwise they are not equal. This also holds for arrays of zero length. Thus, the type ty array
admits equality even if ty
does not.
eqtype 'a array = 'a array
type 'a vector = 'a Vector.vector
val maxLen : int
val array : int * 'a -> 'a array
val fromList : 'a list -> 'a array
val tabulate : int * (int -> 'a) -> 'a array
val length : 'a array -> int
val sub : 'a array * int -> 'a
val update : 'a array * int * 'a -> unit
val vector : 'a array -> 'a vector
val copy : {src : 'a array, dst : 'a array, di : int}
-> unit
val copyVec : {src : 'a vector, dst : 'a array, di : int}
-> unit
val appi : (int * 'a -> unit) -> 'a array -> unit
val app : ('a -> unit) -> 'a array -> unit
val modifyi : (int * 'a -> 'a) -> 'a array -> unit
val modify : ('a -> 'a) -> 'a array -> unit
val foldli : (int * 'a * 'b -> 'b) -> 'b -> 'a array -> 'b
val foldri : (int * 'a * 'b -> 'b) -> 'b -> 'a array -> 'b
val foldl : ('a * 'b -> 'b) -> 'b -> 'a array -> 'b
val foldr : ('a * 'b -> 'b) -> 'b -> 'a array -> 'b
val findi : (int * 'a -> bool)
-> 'a array -> (int * 'a) option
val find : ('a -> bool) -> 'a array -> 'a option
val exists : ('a -> bool) -> 'a array -> bool
val all : ('a -> bool) -> 'a array -> bool
val collate : ('a * 'a -> order)
-> 'a array * 'a array -> order
val maxLen : int
Size
exception being raised.
array (n, init)
maxLen
< n, then the Size
exception is raised.
fromList l
length
l
and the i(th) element of the array is the i(th) element of the the list. If the length of the list is greater than maxLen
, then the Size
exception is raised.
tabulate (n, f)
fromList (List.tabulate (n, f))If n < 0 or
maxLen
< n, then the Size
exception is raised.
length arr
sub (arr, i)
Subscript
exception is raised.
update (arr, i, x)
Subscript
exception is raised.
vector arr
Vector.tabulate (length arr, fn i => sub (arr, i))
copy {src, dst, di}
copyVec {src, dst, di}
Subscript
exception is raised.
Implementation note:
In
copy
, if dst and src are equal, we must havedi = 0
to avoid an exception, andcopy
is then the identity.
appi f arr
app f arr
appi
supplies f with the array index of the corresponding element.
modifyi f arr
modify f arr
modifyi
supplies f with the array index of the corresponding element. The expression modify f arr
is equivalent to modifyi (f o #2) arr
.
foldli f init arr
foldri f init arr
foldl f init arr
foldr f init arr
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 array index of the corresponding element.
Refer to the MONO_ARRAY
manual pages for reference implementations of the indexed versions.
The expression foldl f init arr
is equivalent to:
foldli (fn (_, a, x) => f(a, x)) init arrThe analogous equivalences hold for
foldri
and foldr
.
findi f arr
find f arr
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 array index of the element and, upon finding an entry satisfying the predicate, returns that index with the element.
exists f arr
f x
evaluates to true
; it returns true
if such an x exists and false
otherwise.
all f arr
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) arr))
.
collate f (a1, a2)
ArraySlice
,MONO_ARRAY
,Vector
Generated October 02, 2003
Last Modified May 26, 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). |