I'm reminded of the seemingly absurdly large limits of function arguments count in Common Lisp implementations. They're so large because you often write:
(apply #'some-function some-data)
which calls some-function with some-data becoming the argument list to the function.
I'm reminded of the seemingly absurdly large limits of function arguments count in Common Lisp implementations. They're so large because you often write:
which calls some-function with some-data becoming the argument list to the function.