Packages

object ConstArray

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

Value Members

  1. def apply[T](v0: T, v1: T, v2: T): ConstArray[T]
  2. def apply[T](v0: T, v1: T): ConstArray[T]
  3. def apply[T](v0: T): ConstArray[T]
  4. val empty: ConstArray[Nothing]
  5. def from[T](o: Option[T]): ConstArray[T]
  6. def from[T](values: Iterable[T]): ConstArray[T]
  7. def newBuilder[T](initialCapacity: Int = 16, growFactor: Double = 2.0): ConstArrayBuilder[T]
  8. def unapplySeq[T](a: ConstArray[T]): Some[IndexedSeq[T]]
  9. def unsafeWrap[T](values: Array[Any]): ConstArray[T]