Replaces composition of drop and take with slice:

Before:

seq.drop(n).take(m)
seq.take(m).drop(n)


After:

seq.slice(n, m + n)
seq.slice(n, m)