Is there any pre-established operator or function that is zero if any of its operands is zero, otherwise negative if any of its operands is negative, otherwise positive?
The sign is the most important thing here; the magnitude (in the non-zero case) could be anything from the largest absolute value to the product or sum of the absolute values of the operands.
I'm tempted to define such an operator in my work (neural network modelling), but I'd first like to be sure that none already exist.
If there is none, would it be common practice to pick an operator (eg. $\otimes$ or $\star$) and redefine it, or should I stick to function notation?