I also have this function which consumes a function, determines its arity (the number of parameters it consumes), and returns a (make-list) of that length
Scheme:
(define (param-list f)
(define n (procedure-arity f))
(make-list n))
My question is this: is there some way for test-fcn to return the result of f with the values in plist as its arguments? (Assuming f takes a constant number of arguments)