Extending ==

I am trying to extend the == operator from Base. If I try to access it via the syntax Base.:==, it does not parse. However, Base.:* does. A workaround is to explicitly import it via import Base: == to extend it. I am using 1.3. Is this a bug?

You have to do Base.:(==). It’s a bit awkward, but hey…

1 Like

Ah, “of course” :slight_smile:

Thank you!

1 Like