in scala
object Array

object Array
extends java.lang.Object
with scala.ScalaObject

Constructor Summary
def this



Def Summary
def concat [ T ] ( xs : scala.Array[T]* ) : scala.Array[T]
Concatenate all argument arrays into a single array
def copy ( src : java.lang.Object , srcPos : scala.Int , dest : java.lang.Object , destPos : scala.Int , length : scala.Int ) : scala.Unit
Copy one array to another Equaivalent to System.arraycopy(src, srcPos, dest, destPos, length), except that this works also for plymorphic and boxed arrays
def range ( start : scala.Int , end : scala.Int ) : scala.Array[scala.Int]
Create a an array containing of successive integers.


Constructor Detail
def this

Def Detail
def concat [ T ]( xs : scala.Array[T]* ) : scala.Array[T]
Concatenate all argument arrays into a single array

def copy ( src : java.lang.Object , srcPos : scala.Int , dest : java.lang.Object , destPos : scala.Int , length : scala.Int ) : scala.Unit
Copy one array to another Equaivalent to System.arraycopy(src, srcPos, dest, destPos, length), except that this works also for plymorphic and boxed arrays

def range ( start : scala.Int , end : scala.Int ) : scala.Array[scala.Int]
Create a an array containing of successive integers.
param:
from the value of the first element of the array
param:
end the value of the last element fo the array plus 1
return:
the sorted array of all integers in range [from;end).