I would like to define a custom operator in Python.
(It is not about overloading an existing operator but about
defining special new operators)
Is this possible without deeply manipulating the Python code?
Are side-effects to be expected?
What about operator precedence?
Can one define an operator to be right- or left -associative?
mathias
(It is not about overloading an existing operator but about
defining special new operators)
Is this possible without deeply manipulating the Python code?
Are side-effects to be expected?
What about operator precedence?
Can one define an operator to be right- or left -associative?
mathias
Comment