compose(args...)
Create the composite function of the args....
args...
compose(f1, f2)(x) is equal to f2(f1(x)).
compose(f1, f2)(x)
f2(f1(x))