📄 mono-dynamic-array-sig.sml
字号:
(* mono-dynamic-array-sig.sml * * COPYRIGHT (c) 1993 by AT&T Bell Laboratories. See COPYRIGHT file for details. * * Signature for unbounded arrays. * *)signature MONO_DYNAMIC_ARRAY = sig type elem type array val array : (int * elem) -> array (* array (sz, e) creates an unbounded array all of whose elements * are initialized to e. sz (>= 0) is used as a * hint of the potential range of indices. Raises Size if a * negative hint is given. *) val subArray : array * int * int -> array (* subArray (a,lo,hi) creates a new array with the same default * as a, and whose values in the range [0,hi-lo] are equal to * the values in b in the range [lo, hi]. * Raises Size if lo > hi *) val fromList : elem list * elem -> array (* arrayoflist (l, v) creates an array using the list of values l * plus the default value v. *) val tabulate: int * (int -> elem) * elem -> array (* tabulate (sz,fill,dflt) acts like Array.tabulate, plus * stores default value dflt. Raises Size if sz < 0. *) val default : array -> elem (* default returns array's default value *) val sub : array * int -> elem (* sub (a,idx) returns value of the array at index idx. * If that value has not been set by update, it returns the default value. * Raises Subscript if idx < 0 *) val update : array * int * elem -> unit (* update (a,idx,v) sets the value at index idx of the array to v. * Raises Subscript if idx < 0 *) val bound : array -> int (* bound returns an upper bound on the index of values that have been * changed. *) val truncate : array * int -> unit (* truncate (a,sz) makes every entry with index > sz the default value *)(** what about iterators??? **) end (* MONO_DYNAMIC_ARRAY *)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -