ArithFunct/sus801
ArithFunct/Stephan
f1def ADD(f, g):f1def ADD(f, g):
n2    def A1(x):n2    def v(x):
3        return (f(x) if callable(f) else f)+(g(x) if callable(g) else g)3        return (f(x) if callable(f) else f)+(g(x) if callable(g) else g)
n4    return A1n4    return v
55
66
7def SUB(f, g):7def SUB(f, g):
n8    def S1(x):n8    def n(x):
9        return (f(x) if callable(f) else f)-(g(x) if callable(g) else g)9        return (f(x) if callable(f) else f)-(g(x) if callable(g) else g)
n10    return S1n10    return n
1111
1212
13def MUL(f, g):13def MUL(f, g):
n14    def M1(x):n14    def l(x):
15        return (f(x) if callable(f) else f)*(g(x) if callable(g) else g)15        return (f(x) if callable(f) else f)*(g(x) if callable(g) else g)
n16    return M1n16    return l
1717
1818
19def DIV(f, g):19def DIV(f, g):
n20    def D1(x):n20    def o(x):
21        return (f(x) if callable(f) else f)/(g(x) if callable(g) else g)21        return (f(x) if callable(f) else f)/(g(x) if callable(g) else g)
t22    return D1t22    return o
2323
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op