an-cabal/an-rope

Rewrite Rope code to use `.collect::<Rope>()`

Closed this issue · 2 comments

hawkw commented

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.

Depends on #15.

hawkw commented

@rachlmac, now that you've finished #48, you can actually put your code to work, if you like!

hawkw commented

Finished by @rachlmac in #49