dao
dao copied to clipboard
In operator ignores type inconsistency
(dao) m = {1 -> 2}
= { 1 -> 2 }
(dao) 'a' in m
= false
(dao) l = {1}
= { 1 }
(dao) 'a' in l
= false
As with equality, type correspondence should be ensured.