You are probably looking for the "drop" function known for example from from lodash:
val seq = 1..10
seq.drop(5)
> [6, 7, 8, 9, 10]
You are probably looking for the "drop" function known for example from from lodash:
val seq = 1..10
seq.drop(5)
> [6, 7, 8, 9, 10]