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
I have a nested object that, when compared, calls objectsEquals internally and in turn iterableEquals.
objectsEquals
iterableEquals
In my case, a is Iterable and b is Set, so the following code calls iterableEquals:
a
Iterable
b
Set
} else if (a is Set && b is Set) { return setEquals(a, b); } else if (a is Iterable && b is Iterable) { return iterableEquals(a, b); }
However, inside iterableEquals I get the assertion error because 'a is! Set && b is! Set' is true.
'a is! Set && b is! Set'
true
The text was updated successfully, but these errors were encountered:
Hi @franzaps 👋 Thanks for opening an issue!
Can you please provide a minimal reproduction sample? I'm happy to push a fix asap!
Sorry, something went wrong.
felangel
No branches or pull requests
I have a nested object that, when compared, calls
objectsEquals
internally and in turniterableEquals
.In my case,
a
isIterable
andb
isSet
, so the following code callsiterableEquals
:However, inside
iterableEquals
I get the assertion error because'a is! Set && b is! Set'
istrue
.The text was updated successfully, but these errors were encountered: