We should be able to re-write our multiple implementations of indexing a Rope with a Range to use the RangeArgument trait, hopefully reducing a lot of boilerplate.
We may not actually want to do this since we have our own Slice type now; we might just want to remove the range indexing functions & add more functionality to our slices?
We should be able to re-write our multiple implementations of indexing a
Rope
with aRange
to use theRangeArgument
trait, hopefully reducing a lot of boilerplate.