Iterated elements type.
A source iterable to copy elements from.
New array of source
elements.
Creates a new, shallow-copied array instance containing elements of the source
iterable converted by the given
converter function.
Calling this function result to the same result as calling Array.from(source, convert)
, except it is optimized for
push iterables.
Iterated elements type.
Resulting array elements type.
A source iterable to convert elements from.
A function that produces an element of result array, taking element of source
iterable as the only
parameter.
New array of elements converted from source
ones.
Generated using TypeDoc
Creates a new, shallow-copied array instance containing elements of the
source
iterable.Calling this function result to the same result as calling
Array.from(source)
, except it is optimized for push iterables.