object Array
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Array
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
def
apply[A](elements: A*)(implicit arg0: Type[A]): Array[A]
Returns an immutable Array with the given elements.
-
def
empty[A](size: lang.I32)(implicit arg0: Type[A]): Array[A]
Returns an empty, mutable Array with the given
size
. -
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 byfunc
.Returns an immutable Array with the given
size
and elements defined byfunc
. Note that whilefunc
does not depend on the index, it is still executedsize
times. -
def
fromSeq[A](elements: Seq[A])(implicit arg0: Type[A]): Array[A]
Returns an immutable Array with the given elements.
-
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 byfunc
. - implicit def tp[A](implicit arg0: Type[A]): Array[A]