Scala Library
|
|
object
WrappedArray
extends
AnyRefMethod Summary | |
implicit def
|
canBuildFrom
[T](implicit m : ClassManifest[T]) : CanBuildFrom[WrappedArray[Any], T, WrappedArray[T]]
|
def
|
make [T](x : AnyRef) : WrappedArray[T] |
def
|
newBuilder [A] : Builder[A, IndexedSeq[A]] |
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Class Summary | |
final class
|
ofBoolean
(val array : Array[Boolean]) extends WrappedArray[Boolean]
|
final class
|
ofByte
(val array : Array[Byte]) extends WrappedArray[Byte]
|
final class
|
ofChar
(val array : Array[Char]) extends WrappedArray[Char]
|
final class
|
ofDouble
(val array : Array[Double]) extends WrappedArray[Double]
|
final class
|
ofFloat
(val array : Array[Float]) extends WrappedArray[Float]
|
final class
|
ofInt
(val array : Array[Int]) extends WrappedArray[Int]
|
final class
|
ofLong
(val array : Array[Long]) extends WrappedArray[Long]
|
final class
|
ofRef
[T <: AnyRef](val array : Array[T]) extends WrappedArray[T]
|
final class
|
ofShort
(val array : Array[Short]) extends WrappedArray[Short]
|
final class
|
ofUnit
(val array : Array[Unit]) extends WrappedArray[Unit]
|
Method Details |
def
make[T](x : AnyRef) : WrappedArray[T]
implicit
def
canBuildFrom[T](implicit
m : ClassManifest[T]) : CanBuildFrom[WrappedArray[Any], T, WrappedArray[T]]
def
newBuilder[A] : Builder[A, IndexedSeq[A]]
Scala Library
|
|