Pointers to Functions
The usual way of calling a function:
(+ 3 4)
Alternative way:
(funcall #'+ 3 4)
#'+ is a pointer to the function "+"
Function pointers can be passed as arguments, returned from functions, or stored as data
Previous slide
Next slide
Back to first slide
View graphic version