dao icon indicating copy to clipboard operation
dao copied to clipboard

In operator ignores type inconsistency

Open Night-walker opened this issue 10 years ago • 0 comments

(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.

Night-walker avatar Sep 10 '15 14:09 Night-walker