|
Scala Library Documentation
|
|
scala/runtime/BoxedBooleanArray.scala]
final
class
BoxedBooleanArray(val value : Array[Boolean])
extends BoxedArray| Method Summary | |
def
|
apply
(index : Int) : Any
The element at given index
|
override def
|
equals (other : Any) : Boolean |
override final def
|
filter
(p : (Any) => Boolean) : BoxedArray
Returns all the elements of this sequence that satisfy the
predicate
p. The order of the elements is preserved. |
override def
|
hashCode : Int |
def
|
length
: Int
The length of the array
|
override final def
|
slice
(start : Int, end : Int) : BoxedArray
Returns a subsequence starting from index
from
consisting of len elements. |
def
|
subArray (start : Int, end : Int) : Array[Boolean] |
def
|
unbox (elemClass : Class) : AnyRef |
def
|
unbox
(elemTag : String) : AnyRef
Convert to Java array.
|
def
|
update
(index : Int, elem : Any) : Unit
Update element at given index
|
| Methods inherited from BoxedArray | |
| isDefinedAt, elements, copyFrom, copyTo, copyToArray, map, flatMap, ++, zip, zipWithIndex, deepToString, deepMkString, deepMkString, deepEquals, stringPrefix |
| Methods inherited from Seq | |
| size, isEmpty, concat, lastIndexOf, take, drop, takeWhile, dropWhile, reverse, contains, subseq, toArray |
| Methods inherited from Collection | |
| toString |
| Methods inherited from Iterable | |
| foreach, forall, exists, find, findIndexOf, indexOf, foldLeft, foldRight, /:, :\, reduceLeft, reduceRight, copyToBuffer, sameElements, toList, mkString, mkString, addString, addString, projection, hasDefiniteSize |
| Methods inherited from PartialFunction | |
| orElse, andThen |
| Methods inherited from Function1 | |
| compose |
| Methods inherited from AnyRef | |
| getClass, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Method Details |
def
length : Int
elemTag - Either one of the tags ".N" where N is the name of a primitive type (@see ScalaRunTime), or a full class name.override
def
hashCode : Int
override final
def
filter(p : (Any) => Boolean) : BoxedArray
p. The order of the elements is preserved.p - the predicate used to filter the list.p.override final
def
slice(start : Int, end : Int) : BoxedArray
from
consisting of len elements.from - ..len - ..|
Scala Library Documentation
|
|