summaryrefslogtreecommitdiffstats
path: root/core/string_builder.cpp
Commit message (Collapse)AuthorAgeFilesLines
* added StringBuilder classKarroffel2017-09-011-0/+94
When doing large string concatenations the default push_back on the String class can slow down things quite a bit. This is because it has to constantly reallocate the memory and copy the contents. This StringBuilder class delays the concatenation until the size of the resulting string is known.