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 Bean type implements IAssociative -contains-key? by simply calling contains?
Bean
IAssociative
-contains-key?
contains?
With CLJS-3283, contains? is being revised to first check if a type implements IAssociative and then directly calls -contains-key?
This causes infinite recursion with Bean implementation.
The text was updated successfully, but these errors were encountered:
Avoid contains? in -contains-key?
e9b161a
Fixes #79
Avoid contains? in -contains-key? (#80)
2a794b6
Successfully merging a pull request may close this issue.
The
Bean
type implementsIAssociative
-contains-key?
by simply callingcontains?
With CLJS-3283,
contains?
is being revised to first check if a type implementsIAssociative
and then directly calls-contains-key?
This causes infinite recursion with
Bean
implementation.The text was updated successfully, but these errors were encountered: