in scala/runtime
class BoxedIntArray
-
final class BoxedIntArray(value: Array[Int])
- extends BoxedArray
- with ScalaObject
Method Summary
|
final
|
def apply(index: Int): Object
The element at given index
|
final override
|
def equals(other: Any): Boolean
|
final override
|
def hashCode(): Int
|
final
|
def length: Int
The length of the array
|
final
|
def unbox(elemTag: String): Object
Convert to Java array.
|
final
|
def update(index: Int, elem: Object): Unit
Update element at given index
|
Methods inherited from java/lang/Object-class
|
clone, eq, finalize, getClass, ne, notify, notifyAll, synchronized, wait, wait, wait |
value
final val value: Array[Int]
length
final def length: Int
-
The length of the array
apply
final def apply(index: Int): Object
-
The element at given index
update
final def update(index: Int, elem: Object): Unit
-
Update element at given index
unbox
final def unbox(elemTag: String): Object
-
Convert to Java array.
- Parameters:
elemTag
-
Either one of the tags ".N" where N is the name of a primitive type
(@see ScalaRunTime), or a full class name.
equals
final override def equals(other: Any): Boolean
hashCode
final override def hashCode(): Int