Open rupertlssmith opened 4 years ago
A function with this signature would be useful:
binOpChain : Expression -> BinOp -> List Expression -> Expression
Can use it to chain appends for example:
binOpChain expr append [ expr2, expr3, expr4 ] -- expr1 ++ expr2 ++ expr3 ++ expr4
A function with this signature would be useful:
Can use it to chain appends for example: