object ArraySeq
A companion object used to create instances of ArraySeq
.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ArraySeq
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
-
final
class
ofBoolean extends ArraySeq[Boolean] with Serializable
- Annotations
- @SerialVersionUID()
-
final
class
ofByte extends ArraySeq[Byte] with Serializable
- Annotations
- @SerialVersionUID()
-
final
class
ofChar extends ArraySeq[Char] with Serializable
- Annotations
- @SerialVersionUID()
-
final
class
ofDouble extends ArraySeq[Double] with Serializable
- Annotations
- @SerialVersionUID()
-
final
class
ofFloat extends ArraySeq[Float] with Serializable
- Annotations
- @SerialVersionUID()
-
final
class
ofInt extends ArraySeq[Int] with Serializable
- Annotations
- @SerialVersionUID()
-
final
class
ofLong extends ArraySeq[Long] with Serializable
- Annotations
- @SerialVersionUID()
-
final
class
ofRef[T <: AnyRef] extends ArraySeq[T] with Serializable
- Annotations
- @SerialVersionUID()
-
final
class
ofShort extends ArraySeq[Short] with Serializable
- Annotations
- @SerialVersionUID()
-
final
class
ofUnit extends ArraySeq[Unit] with Serializable
- Annotations
- @SerialVersionUID()
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def canBuildFrom[T](implicit m: ClassTag[T]): CanBuildFrom[ArraySeq[_], T, ArraySeq[T]]
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- def empty[T <: AnyRef]: ArraySeq[T]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
unsafeWrapArray[T](x: Array[T]): ArraySeq[T]
Wrap an existing
Array
into anArraySeq
of the proper primitive specialization type without copying.Wrap an existing
Array
into anArraySeq
of the proper primitive specialization type without copying.Note that an array containing boxed primitives can be wrapped in an
ArraySeq
without copying. For example,val a: Array[Any] = Array(1)
is an array ofObject
at runtime, containingInteger
s. AnArraySeq[Int]
can be obtained with a cast:ArraySeq.unsafeWrapArray(a).asInstanceOf[ArraySeq[Int]]
. The values are still boxed, the resulting instance is an ArraySeq.ofRef. WritingArraySeq.unsafeWrapArray(a.asInstanceOf[Array[Int]])
does not work, it throws aClassCastException
at runtime. -
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )