Search found 2 matches

by kevy1210
Sun Feb 01, 2015 8:02 pm
Forum: Common Lisp
Topic: Recursive function using Apply
Replies: 2
Views: 8755

Re: Recursive function using Apply

Dear edgar-rft,

Thank you very much for responding to my post. Your explanation is fantastic. I can't thank you enough for taking the time to help a newbie like myself out, I really do appreciate it.

Also, I will make sure to use the code formatting option next time :D
by kevy1210
Fri Jan 30, 2015 6:27 pm
Forum: Common Lisp
Topic: Recursive function using Apply
Replies: 2
Views: 8755

Recursive function using Apply

Hello All, I am new to the boards, and I was looking for help on specific function I can't seem to understand. In Paul Graham's book On Lisp he defines a function called fint (for function intersection) like this: (defun fint (fn &rest fns) (if (null fns) fn (let ((chain (apply #'fint fns)) #'(l...