Skip to content

Make arithmetic operations n-ary when it makes sense #343

@gsimone

Description

@gsimone

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.

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions