Is it possible to extend Base.&.
i.e.
function &(my_stuct_a, my_struct_b)
# Some Code
end
It throws error
ERROR: syntax: expected "(" in function definition
And then, attempting
function Base.&(my_stuct_a, my_struct_b)
# Some Code
end
Error: syntax: expected "end" in definition of function "Base"