mp4096 / indentex

An indentation-based superset of LaTeX
MIT License
9 stars 2 forks source link

Look into using copy on write #46

Closed mp4096 closed 5 years ago

mp4096 commented 7 years ago

Indentex actually has a lot of places where a string can be either modified or left as it is. So maybe it is a good idea to use Cow instead of constantly allocating Strings.

mp4096 commented 5 years ago

Solved in 0.5.0 by using move semantics.