JuliaLang/julia
View on GitHub== for immutables should recursively call == on its fields
Open
#4,648 opened on Oct 26, 2013
breakingequalityhelp wantedneeds decision
Description
This doesn't make much sense:
julia> immutable Foo{T}
bar::T
end
julia> Foo("baz") == Foo("baz")
false
julia> Foo("baz").bar == Foo("baz").bar
true
julia> Foo(1) == Foo(1)
true
If the fields are == to each other then the objects should be == to each other.