Hi Cedric,

On Wed 21 Dec 2011 13:26, ri...@happyleptic.org writes:

> I'm trying to get a list of parameter names from a function, using
> this:
>
> (use-modules (system vm program))
> (define (val->string v)
>   (if (string? v) v (object->string v)))
> (define (fun-params fun)
>   (let ((bindings (program-bindings fun)))
>     (map (lambda (binding) (val->string (binding:name binding))) bindings)))

Why not use program-arguments-alist, or program-lambda-list?

> is it guaranteed that the first b bindings will be the parameters ?

No, because there are complications with case-lambda, keyword, rest, and
optional arguments.

Cheers,

Andy
-- 
http://wingolog.org/

Reply via email to