composer-suite icon indicating copy to clipboard operation
composer-suite copied to clipboard

Make arithmetic operations n-ary when it makes sense

Open gsimone opened this issue 1 year ago • 4 comments

eg:

// now
Mul(a, Mul(b, Mul(c, Mul(1, 3 )))
// then 
Mul(a, b, c, 1, 3 ) // becomes => a * b * c * 1. * 3.
Add(a, b, c, 1, 3 ) // becomes => a + b + c + 1. + 3.

gsimone avatar Oct 27 '22 10:10 gsimone