Closed bertiqwerty closed 10 months ago
Addresses issues #51 and #41
All binary operators can be used either like a op b or like op(a, b). Thereby, the latter will be interpreted as ((a) op (b)). For instance
a op b
op(a, b)
((a) op (b))
atan2(y * 2, 1 / x) * 2
and
((y * 2) atan2 (1 / x)) * 2
are equivalent. As a side-product, atan2 has been added to the list of default-operators.
atan2
Addresses issues #51 and #41
All binary operators can be used either like
a op b
or likeop(a, b)
. Thereby, the latter will be interpreted as((a) op (b))
. For instanceand
are equivalent. As a side-product,
atan2
has been added to the list of default-operators.