Displays the list structure of a function defined with defun-q
(defun-q-list-ref 'function )
Arguments
A symbol naming the function.
Return Values
nil, if the argument is not a list.
The list definition of the function; otherwiseExamples
defun-q:
Define a function using_$ (defun-q my-startup (x) (print (list x)))
MY-STARTUP
defun-q-list-ref to display the list structure of my-startup:
Use_$ (defun-q-list-ref 'my-startup)
((X) (PRINT (LIST X)))
defun-q and defun-q-list-set functions.
The