(repeat-transformation #'(lambda (x) (* 2 x)) 4 1)
This is a LISP lambda function , i don't understand what is the last "1" ? Thanks.
This is a LISP lambda function , i don't understand what is the last "1" ? Thanks. |
|||
|
|
|
Definition: repeat-transformation (F N X) Repeat applying function F on object X for N times. You're defining your lambda function to be called by repeat-transformation 4 times on the integer 1. Hope that explains it. |
|||
|
|
|
Google comes back with a recursive definition for
Which indicates the |
|||
|
|
|
The lambda function is the first argument to repeat-transformation. 4 and 1 are the second and third arguments respectively. The Lisp Tutorial Advanced Functional Programming in LISP defines a repeat-transformation function that repeats applying function F on object X for N times. If yours is equivalent, then the |
|||||||
|