We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SimpleLogo uses std::regex for some operations on std::string. This is fine, but std::regex is pretty slow.
This will be an issue if someone uses SimpleLogo to execute large scripts
Std::regex should be replaced either by a more efficient regex library (like Google's RE2) or by our own algorithms.
Won't fix for now - unless someone needs the performance improvement, this isn't worth fixing
The text was updated successfully, but these errors were encountered:
Mentioned in #2
Sorry, something went wrong.
No branches or pull requests
SimpleLogo uses std::regex for some operations on std::string. This is fine, but std::regex is pretty slow.
This will be an issue if someone uses SimpleLogo to execute large scripts
Std::regex should be replaced either by a more efficient regex library (like Google's RE2) or by our own algorithms.
Won't fix for now - unless someone needs the performance improvement, this isn't worth fixing
The text was updated successfully, but these errors were encountered: