Creates a Sequence from the given arguments.
Sequence
The element type.
sequenceOf(1, 2, 3).map(n => n * 2).toArray(); // [2, 4, 6] Copy
sequenceOf(1, 2, 3).map(n => n * 2).toArray(); // [2, 4, 6]
Creates a
Sequencefrom the given arguments.