We are using it for mutating and we can pass long strings like 60k. And it works very slow as indexing over swift strings is not constant time operation. So had to switch to indexes not to subscript from start every time
e.g. for 60k before changes 5 minutes, and after changes 0.013 sec
Thank you for library!
We are using it for mutating and we can pass long strings like 60k. And it works very slow as indexing over swift strings is not constant time operation. So had to switch to indexes not to subscript from start every time
e.g. for 60k before changes 5 minutes, and after changes 0.013 sec