File: global-multiple-values.htm

package info (click to toggle)
nyquist 3.24%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 58,156 kB
  • sloc: ansic: 74,757; lisp: 18,169; java: 10,942; cpp: 6,688; sh: 175; xml: 58; makefile: 40; python: 15
file content (142 lines) | stat: -rw-r--r-- 3,906 bytes parent folder | download | duplicates (7)
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<html><head>

<title>cl:*multiple-values*</title>

<style type="text/css">
.example {
  color: #000000;
  background-color: #F5F5F5;
  padding: 8px;
  border: #808080;
  border-style: solid;
  border-width: 1px;
  width:auto;
}
.button {
  color: #000000;
  background-color: #F5F5F5;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 4px;
  padding-right: 8px;
  border: #808080;
  border-style: solid;
  border-width: 1px;
  white-space: pre;
}
.box {
  color: #000000;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 16px;
  padding-right: 16px;
  border: #808080;
  border-style: solid;
  border-width: 1px;
}
</style>

</head>

<body>

<a href="../../start.htm">Nyquist / XLISP 2.0</a>&nbsp; -&nbsp;
<a href="../../manual/contents.htm">Contents</a> |
<a href="../../tutorials/tutorials.htm">Tutorials</a> |
<a href="../examples.htm">Examples</a> |
<a href="../../reference/reference-index.htm">Reference</a>

<hr>

<h1>cl:*multiple-values*</h1>

<hr>

<p>The <nobr>cl:<b>*multiple-values*</b></nobr> variable is used to signal
if a function has returned multiple values:</p>

<p><div class="box">

<dl>
<dt>cl:<b>*multiple-values*</b></dt>
<dd>returns - <a href="../../reference/t.htm">&nbsp;T&nbsp;</a> if a
function returned multiple values</dd>
</dl>

</div></p>

<p>Test if a function has returned multiple values:</p>

<pre class="example">
(setf cl:*multiple-values* nil)
(let ((result (function ...)))
  (if cl:*multiple-values*
      (do-something-with *rslt* ...)
      (do-something-with result ...))
  ... )
</pre>

<p>Do not use <nobr>cl:<b>*multiple-values*</b></nobr> with
<a href="../../reference/let.htm">let</a> like this:</p>

<pre class="example">
(let ((cl:*multiple-values* nil)
      (result (function ...)))
  (if cl:*multiple-values*
      (do-something-with *rslt* ...)
      (do-something-with result ...))
  ... )
</pre>

<p>This doesn't work because 'function' is evaluated in the global XLISP
environment, where the lexical <a href="../../reference/let.htm">let</a>
binding of the <nobr>cl:<b>*multiple-values*</b></nobr> variable does not
exist, while the <a href="../../reference/if.htm">&nbsp;if&nbsp;</a> form
inside the <a href="../../reference/let.htm">let</a> form cannot see a
global change of the <nobr>cl:<b>*multiple-values*</b></nobr> variable,
because the global value is shadowed by the lexical
<a href="../../reference/let.htm">let</a> binding.
<nobr>See <a href="../environment.htm">Environment</a></nobr> for more
details about variables.</p>

<p>The XLISP <a href="../../reference/progv.htm">progv</a> special form can
be used to encapsulate a multiple value call while automatically restoring
the old values at the end like this:</p>

<pre class="example">
(values 1 2 3)        =&gt; 1

cl:*multiple-values*  =&gt; T
*rslt*                =&gt; (1 2 3)

(progv '(cl:*multiple-values* *rslt*) '(nil nil)
  (let ((result (function ...)))
    (if cl:*multiple-values*
        (do-something-with *rslt* ...)
        (do-something-with result ...))))

cl:*multiple-values*  =&gt; T
*rslt*                =&gt; (1 2 3)
</pre>

<p><div class="box">

<p><b>Note:</b> All functions returning multiple values set 
<nobr>cl:<b>*multiple-values*</b></nobr> to
<a href="../../reference/t.htm">&nbsp;T&nbsp;</a>, but it's up to the
Lisp programmer to reset the variable
<nobr>to <a href="../../reference/nil.htm">NIL</a></nobr>.</p>

</div></p>

<p><nobr>&nbsp;&nbsp;<a href="#top">Back to top</a></nobr></p>

<hr>

<a href="../../start.htm">Nyquist / XLISP 2.0</a>&nbsp; -&nbsp;
<a href="../../manual/contents.htm">Contents</a> |
<a href="../../tutorials/tutorials.htm">Tutorials</a> |
<a href="../examples.htm">Examples</a> |
<a href="../../reference/reference-index.htm">Reference</a>

</body></html>