Once #15 is finished, we can rewrite a lot of our code that .collect()s an iterator into a String and then uses Rope::from() to turn the String into a Rope to just use .collect() to make a Rope. This would cut down on the call stack size possibly and make our code more concise.
Once #15 is finished, we can rewrite a lot of our code that
.collect()
s an iterator into aString
and then usesRope::from()
to turn theString
into aRope
to just use.collect()
to make aRope
. This would cut down on the call stack size possibly and make our code more concise.Depends on #15.