Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

missing == for Reverse #37867

Open
johnnychen94 opened this issue Oct 3, 2020 · 3 comments
Open

missing == for Reverse #37867

johnnychen94 opened this issue Oct 3, 2020 · 3 comments
Labels
equality Issues relating to equality relations: ==, ===, isequal

Comments

@johnnychen94
Copy link
Member

johnnychen94 commented Oct 3, 2020

That they don't "equal" is strange...

julia> A = [1 2 3]
1×3 Matrix{Int64}:
 1  2  3

julia> Iterators.Reverse(A) == reverse(A)
false

julia> all(map(==, Iterators.Reverse(A), reverse(A)))
true
@mcabbott
Copy link
Contributor

mcabbott commented Oct 3, 2020

Isn't this true for all generators?

julia> (x for x in A) == A
false

julia> all(map(==, (x for x in A), A))
true

@johnnychen94
Copy link
Member Author

johnnychen94 commented Oct 4, 2020

Ah, I didn't realize that this is a general case. I think we should document this as undefined behavior. More eagerly, it also makes sense to throw an error or depwarn on this.

One reason I can think of not defining this is that iterate is not always a trivial operation. But for some special cases, like Reverse I mentioned, Base.(:)(r1::Reverse, r2::Reverse) = r1.itr == r2.itr is a good definition.

Some generators, e.g., ranges, do apply ==.

@mcabbott
Copy link
Contributor

mcabbott commented Oct 4, 2020

Ranges are AbstractVectors though. For generators I don't know what the ideal behaviour would be, agree it's a little weird.

xref #37648, which may make this more confusing.

@StefanKarpinski StefanKarpinski added the equality Issues relating to equality relations: ==, ===, isequal label May 10, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
equality Issues relating to equality relations: ==, ===, isequal
Projects
None yet
Development

No branches or pull requests

3 participants