object ImmutableArray
- Source
- ImmutableArray.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ImmutableArray
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
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
- def apply[A](elems: A*)(implicit arg0: ClassTag[A]): ImmutableArray[A]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def builderForAnyRef: ImmutableArrayBuilder[AnyRef]
- def builderForChar: ImmutableArrayBuilder[Char]
- def builderForDouble: ImmutableArrayBuilder[Double]
- def builderForFloat: ImmutableArrayBuilder[Float]
- def builderForInt: ImmutableArrayBuilder[Int]
- def builderForLong: ImmutableArrayBuilder[Long]
- def builderForShort: ImmutableArrayBuilder[Short]
- implicit def canBuildFrom[A]: BuildFrom[Coll, A, ImmutableArray[A]]
- implicit val canBuildFromChar: BuildFrom[Coll, Char, ImmutableArray[Char]]
- implicit val canBuildFromDouble: BuildFrom[Coll, Double, ImmutableArray[Double]]
- implicit val canBuildFromFloat: BuildFrom[Coll, Float, ImmutableArray[Float]]
- implicit val canBuildFromInt: BuildFrom[Coll, Int, ImmutableArray[Int]]
- implicit val canBuildFromLong: BuildFrom[Coll, Long, ImmutableArray[Long]]
- implicit val canBuildFromShort: BuildFrom[Coll, Short, ImmutableArray[Short]]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- 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
- 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
- def empty[A]: ImmutableArray[A]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def newBuilder[A](initialSize: Int)(implicit arg0: ClassTag[A]): ImmutableArrayBuilder[A]
- def newBuilder[A](implicit arg0: ClassTag[A]): ImmutableArrayBuilder[A]
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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!