ArithFunct/abrivan
ArithFunct/Stephan
f1def ADD(f, g):f1def ADD(f, g):
n2    def A(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 An4    return v
55
66
7def SUB(f, g):7def SUB(f, g):
n8    def S(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 Sn10    return n
1111
1212
13def MUL(f, g):13def MUL(f, g):
n14    def M(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 Mn16    return l
1717
1818
19def DIV(f, g):19def DIV(f, g):
n20    def D(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 Dt22    return o
2323
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op