Creates a new Enumerable from the input Iterable.
The Iterable to create an Enumerable from.
A new Enumerable.
const numbers = [1, 2, 3, 4];const enumerable = from(numbers); Copy
const numbers = [1, 2, 3, 4];const enumerable = from(numbers);
TSource The type of the Iterable.
Creates a new Enumerable from the input Iterable.