Packages

object Array

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Array
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply[A](elements: A*)(implicit arg0: Type[A]): Array[A]

    Returns an immutable Array with the given elements.

  2. def empty[A](size: lang.I32)(implicit arg0: Type[A]): Array[A]

    Returns an empty, mutable Array with the given size.

  3. def fill[A](size: lang.I32)(func: ⇒ A)(implicit arg0: Type[A]): Array[A]

    Returns an immutable Array with the given size and elements defined by func.

    Returns an immutable Array with the given size and elements defined by func. Note that while func does not depend on the index, it is still executed size times.

  4. def fromSeq[A](elements: Seq[A])(implicit arg0: Type[A]): Array[A]

    Returns an immutable Array with the given elements.

  5. def tabulate[A](size: lang.I32)(func: (lang.I32) ⇒ A)(implicit arg0: Type[A]): Array[A]

    Returns an immutable Array with the given size and elements defined by func.

  6. implicit def tp[A](implicit arg0: Type[A]): Array[A]