Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-01-01 | Update copyright statements to 2018 | RĂ©mi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2017-09-01 | added StringBuilder class | Karroffel | |
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. |