Create an array with given elements
Concatenate all argument sequences into a single array
Copy one array to another
Returns array of length 0
A builder factory that generates a generic array
A five-dimensional array that contains the results of some element computation a number of times
A four-dimensional array that contains the results of some element computation a number of times
A three-dimensional array that contains the results of some element computation a number of times
A two-dimensional array that contains the results of some element computation a number of times
An array that contains the results of some element computation a number of times
Create an array containing the values of a given function f
over given range [0
def
fromFunction[T](f: (Int, Int, Int, Int) ⇒ T)(n1: Int, n2: Int, n3: Int, n4: Int)(arg0: ClassManifest[T]): Array[Array[Array[Array[T]]]]
Create an array containing the values of a given function f
over given range [0
def
fromFunction[T](f: (Int, Int, Int) ⇒ T)(n1: Int, n2: Int, n3: Int)(arg0: ClassManifest[T]): Array[Array[Array[T]]]
Create an array containing the values of a given function f
over given range [0
def
fromFunction[T](f: (Int, Int) ⇒ T)(n1: Int, n2: Int)(arg0: ClassManifest[T]): Array[Array[T]]
Create an array containing the values of a given function f
over given range [0
def
fromFunction[T](f: (Int) ⇒ T)(n: Int)(arg0: ClassManifest[T]): Array[T]
Create an array containing the values of a given function f
over given range [0
def
iterate[T](start: T, len: Int)(f: (T) ⇒ T)(arg0: ClassManifest[T]): Array[T]
An array containing repeated applications of a function to a start value
def
make[T](n: Int, elem: T)(arg0: ClassManifest[T]): Array[T]
Create an array containing several copies of an element
def
newBuilder[T](m: ClassManifest[T]): ArrayBuilder[T]
def
ofDim[T](n1: Int, n2: Int, n3: Int, n4: Int, n5: Int)(arg0: ClassManifest[T]): Array[Array[Array[Array[Array[T]]]]]
def
ofDim[T](n1: Int, n2: Int, n3: Int, n4: Int)(arg0: ClassManifest[T]): Array[Array[Array[Array[T]]]]
def
ofDim[T](n1: Int, n2: Int, n3: Int)(arg0: ClassManifest[T]): Array[Array[Array[T]]]
def
ofDim[T](n1: Int, n2: Int)(arg0: ClassManifest[T]): Array[Array[T]]
def
ofDim[T](n1: Int)(arg0: ClassManifest[T]): Array[T]
Create array with given dimensions
def
range(start: Int, end: Int, step: Int): Array[Int]
An array containing equally spaced values in some integer interval
def
range(start: Int, end: Int): Array[Int]
An array containing a sequence of increasing integers in a range
def
tabulate[T](n1: Int, n2: Int, n3: Int, n4: Int, n5: Int)(f: (Int, Int, Int, Int, Int) ⇒ T)(arg0: ClassManifest[T]): Array[Array[Array[Array[Array[T]]]]]
A five-dimensional array containing values of a given function over
ranges of integer values starting from 0
def
tabulate[T](n1: Int, n2: Int, n3: Int, n4: Int)(f: (Int, Int, Int, Int) ⇒ T)(arg0: ClassManifest[T]): Array[Array[Array[Array[T]]]]
A four-dimensional array containing values of a given function over
ranges of integer values starting from 0
def
tabulate[T](n1: Int, n2: Int, n3: Int)(f: (Int, Int, Int) ⇒ T)(arg0: ClassManifest[T]): Array[Array[Array[T]]]
A three-dimensional array containing values of a given function over
ranges of integer values starting from 0
def
tabulate[T](n1: Int, n2: Int)(f: (Int, Int) ⇒ T)(arg0: ClassManifest[T]): Array[Array[T]]
A two-dimensional array containing values of a given function over
ranges of integer values starting from 0
def
tabulate[T](n: Int)(f: (Int) ⇒ T)(arg0: ClassManifest[T]): Array[T]
An array containing values of a given function over a range of integer
values starting from 0
def
unapplySeq[T](x: Array[T]): Option[IndexedSeq[T]]
This method is called in a pattern match { case Seq(
This object contains utility methods operating on arrays.