- arguments-chain #!optional FUNC0...procedure
Returns a procedure that applies each FUNCi to result of the FUNCi+1. FUNCn is applied to the arguments.
Examples:
((arguments-chain f g h) arg...) -> (apply f (apply g (apply h arg...)))
((arguments-chain f) arg...) -> (apply f arg...)
((arguments-chain) arg...) -> (list arg...)