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
The calls to unchecked-add in collections cause boxed math warnings when *unchecked-math* is enabled.
unchecked-add
collections
*unchecked-math*
https://github.com/ztellman/potemkin/blob/e8c64802b8772a90110434d1b515ce35b78b961b/src/potemkin/collections.clj#L120
https://github.com/ztellman/potemkin/blob/e8c64802b8772a90110434d1b515ce35b78b961b/src/potemkin/collections.clj#L128
Type hinting acc as long resolves the warning.
acc
long
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The calls to
unchecked-add
incollections
cause boxed math warnings when*unchecked-math*
is enabled.https://github.com/ztellman/potemkin/blob/e8c64802b8772a90110434d1b515ce35b78b961b/src/potemkin/collections.clj#L120
https://github.com/ztellman/potemkin/blob/e8c64802b8772a90110434d1b515ce35b78b961b/src/potemkin/collections.clj#L128
Type hinting
acc
aslong
resolves the warning.The text was updated successfully, but these errors were encountered: