1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
<html><head><title>XLISP &aux</title>
<link rel="stylesheet" type="text/css" href="reference.css">
</head>
<body>
<a href="../start.htm">Nyquist / XLISP 2.0</a> -
<a href="../manual/contents.htm">Contents</a> |
<a href="../tutorials/tutorials.htm">Tutorials</a> |
<a href="../examples/examples.htm">Examples</a> |
<a href="reference-index.htm">Reference</a>
<hr>
<h1>&aux</h1>
<hr>
<p><table cellpadding="0" cellspacing="0" style="margin-left:10px"><tbody>
<tr valign="top">
<td><nobr>Type:</nobr></td>
<td><nobr> - </nobr></td>
<td width="100%"><nobr>keyword</nobr></td>
</tr>
<tr valign="top">
<td><nobr>Source:</nobr></td>
<td><nobr> - </nobr></td>
<td width="100%"><nobr>xleval.c</nobr></td>
</tr>
</tbody></table></p>
<h2>Syntax</h2>
<p><div class="box">
<dl>
<dt><b>&aux</b> [<i>aux-var</i> | (<i>aux-var aux-value</i>)] ...</dt>
<dd><i>aux-var</i> - auxiliary variable<br>
<i>aux-value</i> - auxiliary variable initialization</dd>
</dl>
</div></p>
<h2>Description</h2>
<p> In XLISP, there are several times that you define a formal argument list
for a body of code [like <a href="defun.htm">defun</a>,
<a href="defmacro.htm">defmacro</a>,
<a href="keyword-answer.htm">:answer</a> and <a
href="lambda.htm">lambda</a>]. <nobr>The 'aux-var'</nobr> variables are a
mechanism for you to define variables local to the function or operation
definition. <nobr>If there</nobr> is an optional <nobr>'aux-value'</nobr>,
they will be set to that value on entry to the body of code. Otherwise, they
are initialized <nobr>to <a href="nil.htm">NIL</a></nobr>. <nobr>At
the</nobr> end of the function or operation execution, these local symbols
and their values are removed.</p>
<h2>Examples</h2>
<p>A function '<nobr>my-add</nobr>' with <nobr>one required</nobr> argument
'num1', <nobr>one <a href="lambda-keyword-rest.htm">&rest</a></nobr>
argument <nobr>'num-list'</nobr>, and <nobr>one &aux</nobr>
<nobr>variable 'sum'</nobr>:</p>
<pre class="example">
(defun my-add (num1 &rest num-list &aux sum)
(setq sum num1) <font color="#008844">; initialize SUM</font>
(dolist (i num-list) <font color="#008844">; loop through the num-list</font>
(setq sum (+ sum i))) <font color="#008844">; add each number to SUM</font>
sum) <font color="#008844">; return SUM when finished</font>
(my-add 1 2 3 4) => 10
(my-add 5 5 5 5 5) => 25
</pre>
<p>See <nobr><a href="addition.htm"> + </a></nobr>,
<a href="defun.htm">defun</a>, <a href="dolist.htm">dolist</a>,
<a href="lambda-keyword-rest.htm">&rest</a>,
<a href="setq.htm">setq</a>.</p>
<p>A function '<nobr>more-keys</nobr>' with <nobr>one required</nobr>
<nobr>argument 'a'</nobr> and <nobr>three &aux</nobr> variables <nobr>'b'
[initialized</nobr> <nobr>to <a href="nil.htm">NIL</a>]</nobr>, <nobr>'c'
[initialized</nobr> <nobr>to 99]</nobr>, and <nobr>'d' [initialized</nobr>
<nobr>to <a href="t.htm"> T </a>]</nobr>:</p>
<pre class="example">
(defun more-keys (a &aux b (c 99) (d t))
(format t "a=~a b=~a c=~a d=~a~%" a b c d))
> (more-keys "hi")
a=hi b=NIL c=99 d=T
NIL
</pre>
<p>See <a href="defun.htm">defun</a>, <a href="format.htm">format</a>.</p>
<p>See also:</p>
<ul>
<li><nobr><a href="../manual/xlisp.htm#auxiliary-variables">Auxiliary Variables</a></nobr></li>
</ul>
<p><nobr> <a href="#top">Back to Top</nobr></a></p>
<hr>
<a href="../start.htm">Nyquist / XLISP 2.0</a> -
<a href="../manual/contents.htm">Contents</a> |
<a href="../tutorials/tutorials.htm">Tutorials</a> |
<a href="../examples/examples.htm">Examples</a> |
<a href="reference-index.htm">Reference</a>
</body></html>
|