Packages

object ImmutableArray

Source
ImmutableArray.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ImmutableArray
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply[A](elems: A*)(implicit arg0: ClassTag[A]): ImmutableArray[A]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def builderForAnyRef: ImmutableArrayBuilder[AnyRef]
  7. def builderForChar: ImmutableArrayBuilder[Char]
  8. def builderForDouble: ImmutableArrayBuilder[Double]
  9. def builderForFloat: ImmutableArrayBuilder[Float]
  10. def builderForInt: ImmutableArrayBuilder[Int]
  11. def builderForLong: ImmutableArrayBuilder[Long]
  12. def builderForShort: ImmutableArrayBuilder[Short]
  13. implicit def canBuildFrom[A]: BuildFrom[Coll, A, ImmutableArray[A]]
  14. implicit val canBuildFromChar: BuildFrom[Coll, Char, ImmutableArray[Char]]
  15. implicit val canBuildFromDouble: BuildFrom[Coll, Double, ImmutableArray[Double]]
  16. implicit val canBuildFromFloat: BuildFrom[Coll, Float, ImmutableArray[Float]]
  17. implicit val canBuildFromInt: BuildFrom[Coll, Int, ImmutableArray[Int]]
  18. implicit val canBuildFromLong: BuildFrom[Coll, Long, ImmutableArray[Long]]
  19. implicit val canBuildFromShort: BuildFrom[Coll, Short, ImmutableArray[Short]]
  20. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  21. def copy[A](arr: Array[A])(implicit arg0: ClassTag[A]): ImmutableArray[A]

    Create a new Immutable Array by creating a copy of the passed in array

  22. def copy[A](col: IterableOnce[A])(implicit arg0: ClassTag[A]): ImmutableArray[A]

    Create a new ImmutableArray by creating a copy of the passed in collection

  23. def empty[A]: ImmutableArray[A]
  24. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  26. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. def newBuilder[A](initialSize: Int)(implicit arg0: ClassTag[A]): ImmutableArrayBuilder[A]
  31. def newBuilder[A](implicit arg0: ClassTag[A]): ImmutableArrayBuilder[A]
  32. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. def toString(): String
    Definition Classes
    AnyRef → Any
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  39. def wrap[A](arr: Array[A])(implicit arg0: ClassTag[A]): ImmutableArray[A]

    Wrap an existing array in an ImmutableArray.

    Wrap an existing array in an ImmutableArray. The passed in array must not be changed after calling this!

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped