in scala.runtime
class BoxedArray

abstract class BoxedArray
extends java.lang.Object
with PartialFunction
with Seq
with ScalaObject
A class representing Array[T]

Constructor Summary
def this



Def Summary
def apply ( index : scala.Int ) : java.lang.Object
The element at given index
def copyFrom ( src : java.lang.Object , from : scala.Int , to : scala.Int , len : scala.Int ) : scala.Unit

def copyTo ( from : scala.Int , dest : java.lang.Object , to : scala.Int , len : scala.Int ) : scala.Unit

def elements : <refinement>

def filter ( p : Function1 ) : java.lang.Object

final def flatMap [ b ] ( f : Function1 ) : Array

override def isDefinedAt ( x : scala.Int ) : scala.Boolean

def length : scala.Int
The length of the array
final def map [ b ] ( f : Function1 ) : Array

final override def stringPrefix : java.lang.String

def subArray ( from : scala.Int , end : scala.Int ) : java.lang.Object

def unbox ( elemTag : java.lang.String ) : java.lang.Object
Convert to Java array.
def update ( index : scala.Int , elem : java.lang.Object ) : scala.Unit
Update element at given index
def value : java.lang.Object
The underlying array value


Constructor Detail
def this

Def Detail
def apply ( index : scala.Int ) : java.lang.Object
The element at given index

def copyFrom ( src : java.lang.Object , from : scala.Int , to : scala.Int , len : scala.Int ) : scala.Unit

def copyTo ( from : scala.Int , dest : java.lang.Object , to : scala.Int , len : scala.Int ) : scala.Unit

def elements : <refinement>

def filter ( p : Function1 ) : java.lang.Object

final def flatMap [ b ]( f : Function1 ) : Array

override def isDefinedAt ( x : scala.Int ) : scala.Boolean

def length : scala.Int
The length of the array

final def map [ b ]( f : Function1 ) : Array

final override def stringPrefix : java.lang.String

def subArray ( from : scala.Int , end : scala.Int ) : java.lang.Object

def unbox ( elemTag : java.lang.String ) : java.lang.Object
Convert to Java array.
param:
elemTag Either one of the tags ".N" where N is the name of a primitive type (
see:
ScalaRunTime), or a full class name.

def update ( index : scala.Int , elem : java.lang.Object ) : scala.Unit
Update element at given index

def value : java.lang.Object
The underlying array value