Pointers to Functions
#’add
Is a reference to the function named ADD
(defun combiner (n)
(if (typep n 'list) #'list #'+))
;; Example of returning a function pointer
;; from a function.
(setq *combiner* (combiner 3))
Previous slide
Next slide
Back to first slide
View graphic version