Generates a range of numbers using Enumerate with given Length and omitting the first From numbers.
Enumerate
Length
From
type From5To9 = Range<5, 10>; // 5, 6, 7, 8, 9
Generates a range of numbers using
Enumerate
with givenLength
and omitting the firstFrom
numbers.Example