in scala/runtime
class BoxedFloatArray

final class BoxedFloatArray(value: Array[Float])
extends BoxedArray
with ScalaObject

Field Summary
final val value: Array[Float]

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

Methods inherited from scala/Any-class
!=, ==, asInstanceOf, isInstanceOf, match

Methods inherited from scala/Iterable-class
/:, :\, concat, exists, find, foldLeft, foldRight, forall, foreach, sameElements

Methods inherited from scala/ScalaObject-class
getScalaType

Methods inherited from scala/Seq-class
concat, copyToArray, drop, indexOf, lastIndexOf, stringPrefix, subseq, take, toList

Methods inherited from scala/runtime/BoxedArray-class
elements, isDefinedAt, toString

Field Detail

value

  final val value: Array[Float]
Method Detail

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