I have a program that requires having a series of interchangeable functions.
In c++ I can do a simple typedef
statement. Then I can call upon on a function in that list with function[variable]
. How can I do this in Common Lisp?
I have a program that requires having a series of interchangeable functions.
In c++ I can do a simple typedef
statement. Then I can call upon on a function in that list with function[variable]
. How can I do this in Common Lisp?
The already given answers having provided plenty of code, I'd like to complement with a bit of theory. An important distinction among languages is whether or not they treat functions as first-class citizens. When they do, they are said to support first-class functions. Common Lisp does, C and C++ don't. Therefore, Common Lisp offers considerably greater latitude than C/C++ in the use of functions. In particular (see other answers for code), one creates arrays of functions in Common Lisp (through lambda-expressions) much in the same way as arrays of any other object. As for 'pointers' in Common Lisp, you may want to have a look here and here for a flavour of how things are done the Common Lisp way.
In Common Lisp everything is a object value, functions included.
(lambda (x) (* x x))
returns a function value. The value is the address where the function resides or something similar so just having it in a list, vector og hash you can fetch that value and call it. Here is an example using lists: