I defined a binary operator in as the first statement in a new Mathematica notebook.
{x1_, y1_} ⊕ {x2_, y2_} := Module[{}, Print["do anything"];]
where the code in the Module is somewhat more meaningful. My questions:
Why does this not show up in a
?Global`*query?How can I set the
Attributesfor this operation to beFlatso it is associative?Do I need to use the
NotationsPackage to do this "properly"?

