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
https://github.com/erlang/otp/blob/34b56e8f566c6f1aa6023bb7b4096b8f2d709d9e/lib/kernel/src/application.erl#L229-L233
Should be moved to function guard
permit(_Application, Bool) when !is_boolean(Bool) exit({badarg, {?MODULE, permit, [Application, Bad]}}); permit(Application, Bool) ...
And we can do even better
permit(_Application, Bool) when is_boolean(Bool) ...
The text was updated successfully, but these errors were encountered:
Here we need to rewrite entire dist_ac module with our own QUIC based distribution protocol!
dist_ac
Sorry, something went wrong.
No branches or pull requests
https://github.com/erlang/otp/blob/34b56e8f566c6f1aa6023bb7b4096b8f2d709d9e/lib/kernel/src/application.erl#L229-L233
Should be moved to function guard
And we can do even better
The text was updated successfully, but these errors were encountered: