You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The equality operator is missing the symmetric property. In some cases, the results are different depending on the order in which the attributes compared.
For example:
[ a | a <- [ 0, "1" ], a == "" ]
and
[ a | a <- [ 0, "1" ], "" == a ]
The text was updated successfully, but these errors were encountered:
The equality operator is missing the symmetric property. In some cases, the results are different depending on the order in which the attributes compared.
For example:
and
The text was updated successfully, but these errors were encountered: