so i tried
Base.==(...) = ...
Base.(==)(...) = ....
function Base.==(...) ...
function Base.(==)(...) ...
to no avail. if i import Base.==, then all of the above works without Base. not a big deal, but would be nice without. btw this also works, but would not want to use it either
e = :(==)
@eval Base.$e(...) = ...
good luck googling == . github didn’t give any hits either