Returns a section from an iterable.
'end' is the end index, not the number of items.
// Return five items from step 10slice(it, 10, 15); Copy
// Return five items from step 10slice(it, 10, 15);
Iterable
Start step
Exclusive end step (or until completion)
Optional
Returns a section from an iterable.
'end' is the end index, not the number of items.
Param: it
Iterable
Param: start
Start step
Param: end
Exclusive end step (or until completion)