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
In my experience package-symbols got to be superfast. When visibility is about all symbols and all packages, it quickly gets slow.
For instance, the (if (eq :external visibility) could be moved out of the loop which could increase performance.
(if (eq :external visibility)
In any case, having a benchmark test would be useful to track regressions.
The text was updated successfully, but these errors were encountered:
Yes, it's quite slow. Moving the condition out of the loop made it even slower for me, though :D
Sorry, something went wrong.
That's why we need benchmarks :p
No branches or pull requests
In my experience package-symbols got to be superfast. When visibility is about all symbols and all packages, it quickly gets slow.
For instance, the
(if (eq :external visibility)
could be moved out of the loop which could increase performance.In any case, having a benchmark test would be useful to track regressions.
The text was updated successfully, but these errors were encountered: