diff options
author | Cedric Cellier <cedric.cellier@securactive.net> | 2012-01-11 17:12:48 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-01-07 20:37:07 +0100 |
commit | 6fca8730f768429b31906104635cb5501e7e3df4 (patch) | |
tree | 070b49dfa893de8e9a5010d2926bd6f69801c20d /doc/ref/api-procedures.texi | |
parent | 44390164ce7ad4b28571d30037529833a4b4f985 (diff) | |
download | guile-6fca8730f768429b31906104635cb5501e7e3df4.tar.gz |
document program-arguments-alist and program-lambda-list
Diffstat (limited to 'doc/ref/api-procedures.texi')
-rw-r--r-- | doc/ref/api-procedures.texi | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/ref/api-procedures.texi b/doc/ref/api-procedures.texi index 02d777155..baa47cc71 100644 --- a/doc/ref/api-procedures.texi +++ b/doc/ref/api-procedures.texi @@ -270,6 +270,15 @@ sense at certain points in the program, delimited by these @code{arity:start} and @code{arity:end} values. @end deffn +@deffn {Scheme Procedure} program-arguments-alist program [ip] +@deffnx {Scheme Procedure} program-lambda-list [ip] +Accessors for a representation of the arguments of a program, with both +names and types (ie. either required, optional or keywords) + +@code{program-arguments-alist} returns this information in the form of +an association list while @code{program-lambda-list} returns the same +information in a form similar to a lambda definition. +@end deffn @node Optional Arguments @subsection Optional Arguments |