You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The C++ class implements a replace_all operation, that can be used to replace all occurrences of a substring or a character with a different string. The implementation is designed to minimize memory allocations and should be faster than boost::algorithm::replace_all in Boost and Python's str.replace. That intuition should be supported by evidence, so new benchmarks should be added.
The text was updated successfully, but these errors were encountered:
The C++ class implements a
replace_all
operation, that can be used to replace all occurrences of a substring or a character with a different string. The implementation is designed to minimize memory allocations and should be faster thanboost::algorithm::replace_all
in Boost and Python'sstr.replace
. That intuition should be supported by evidence, so new benchmarks should be added.The text was updated successfully, but these errors were encountered: