an-cabal / an-rope

an rope data structure
https://docs.rs/an-rope
MIT License
11 stars 2 forks source link

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

Closed hawkw closed 7 years ago

hawkw commented 7 years ago

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 7 years ago

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

hawkw commented 7 years ago

Finished by @rachlmac in #49