collection
collection copied to clipboard
`DeepCollectionEquality` takes quite many steps to realize that `e1` and `e2` are identical
Maybe it should return early?
if (identical(e1, e2)) return true;
if (e1 == null || e2 == null) return false;
This happens when comparing lists of identical elements.
Sounds reasonable.