object RefArray
Factory for RefArrays.
- Alphabetic
- By Inheritance
- RefArray
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
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
- val Empty: RefArray[Nothing]
-
def
_UNSAFE_from[T <: AnyRef](data: Array[AnyRef]): RefArray[T]
Creates a new RefArray from the given array.
Creates a new RefArray from the given array. Hence, changes to the underlying array would be reflected!
Only use this factory method if you have full control over all aliases to the given array to ensure that the underlying array is not mutated.
- def apply[T <: AnyRef](e1: T, e2: T, e3: T, data: T*): RefArray[T]
- def apply[T <: AnyRef](e1: T, e2: T, e3: T): RefArray[T]
- def apply[T <: AnyRef](e1: T, e2: T): RefArray[T]
- def apply[T <: AnyRef](e: T): RefArray[T]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- def empty[T <: AnyRef]: RefArray[T]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def fill[T <: AnyRef](n: Int)(f: ⇒ T): RefArray[T]
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- def from[X <: AnyRef, Y <: AnyRef](map: Map[X, Y]): RefArray[(X, Y)]
- def from[T <: AnyRef](take: Int, it: Iterator[AnyRef]): RefArray[T]
-
def
from[T <: AnyRef](data: Array[AnyRef]): RefArray[T]
Creates a new RefArray by cloning the given array.
Creates a new RefArray by cloning the given array.
I.e., modifications to the given array will not be reflected.
-
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
- def mapFrom[T <: AnyRef](data: Array[Int])(f: (Int) ⇒ T): RefArray[T]
- def mapFrom[T, X <: AnyRef](data: Seq[T])(f: (T) ⇒ X): RefArray[X]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def newBuilder[T <: AnyRef]: Builder[T, RefArray[T]]
-
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 unapplySeq[T <: AnyRef](x: RefArray[T]): Option[Seq[T]]
-
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( ... )
- def withSize[T <: AnyRef](size: Int): RefArray[T]