File: environment.htm

package info (click to toggle)
nyquist 3.12%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 58,036 kB
  • sloc: ansic: 74,355; lisp: 20,485; java: 9,390; cpp: 6,695; sh: 207; xml: 58; makefile: 40
file content (1001 lines) | stat: -rw-r--r-- 44,013 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
<html><head>

<title>Environment</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>Environment</h1>

<hr>

<ol>
<li><nobr><a href="#unbound">*unbound*</a></nobr></li>
<li><nobr><a href="#lexical-environment">Lexical Environment</a></nobr></li>
<ul>
<li><nobr><a href="#getenv">getenv</a> - [Macro]</nobr></li>
<li><nobr><a href="#eval-env">eval-env</a> - [Macro]</nobr></li>
</ul>
<li><nobr><a href="#lboundp">lboundp</a> - [Macro] - has this symbol a lexical variable value bound to it?</nobr></li>
<ul>
<li><nobr><a href="#valuep">valuep</a> - [Macro] - has this symbol a valid variable value bound to it?</nobr></li>
</ul>
<li><nobr><a href="#lfboundp">lfboundp</a> - [Macro] - has this symbol a lexical function value bound to it?</nobr></li>
<li><nobr><a href="#lsymbol-value">lsymbol-value</a> - [Macro] - get the lexical variable value</nobr></li>
<li><nobr><a href="#lsymbol-function">lsymbol-function</a> - [Macro] - get the lexical <a href="../reference/flet.htm">flet</a>, <a href="../reference/labels.htm">labels</a>, or <a href="../reference/macrolet.htm">macrolet</a> function value</nobr></li>
<li><nobr><a href="#lmacroexpand-1">lmacroexpand-1</a> - [Macro] - expand the first level of a a <a href="../reference/macrolet.htm">macrolet</a> form</nobr></li>
<li><nobr><a href="#known-problems">Known Problems</a></nobr></li>
</ol>

<a name="unbound"></a>

<hr>

<h2>*unbound*</h2>

<hr>

<p>A tricky problem with XLISP is that the symbol
<a href="../reference/global-unbound.htm">*unbound*</a> can be bound as a
value to any Lisp symbol, also to a lexical parameter variable if passed
as a value to a Lisp function:</p>

<pre class="example">
(defun <font color="#0000CC">test</font> (x)
  (print x))

(test '*unbound*)  =&gt; <font color="#880000">error: unbound variable</font>
</pre>

<p>The problem here is that the symbol
<a href="../reference/global-unbound.htm">*unbound*</a> has been bound to
the parameter variable 'x'</nobr>, so the expression <nobr>(print x)</nobr>
instead of printing &quot;*UNBOUND*&quot; now causes an 'unbound variable'
error. How can</nobr> I test from inside of a function if the lexical
parameter variable 'x' is bound to the symbol
<a href="../reference/global-unbound.htm">*unbound*</a>? Unfortunately there
is no standard Lisp way to solve this problem.</p>

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

<a name="obarray"></a>

<hr>

<h2>*obarray*</h2>

<hr>

<p>A symbol in the *obarray* is protected from garbage collection.</p>

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

<a name="lexical-environment"></a>

<hr>

<h2>Lexical Environment</h2>

<hr>

<p>Lisp parameter variables together with local variables bound with
<a href="../reference/let.htm">let</a> and
<a href="../reference/let-star.htm">let*</a> and functions defined by
<a href="../reference/flet.htm">flet</a> and
<a href="../reference/labels.htm">labels</a> are not interned in the
<a href="../reference/global-obarray.htm">*obarray*</a>, instead they are
stored in the local lexical environment, maintained via an internal
association list. <nobr>The key</nobr> for reading this list is the
<a href="../reference/global-evalhook.htm">*evalhook*</a> variable and the
<a href="../reference/evalhook.htm">evalhook</a> function.</p>

<p>Here are two Nyquist macros from 'evalenv.lsp':</p>

<pre class="example">
(defmacro <font color="#0000CC">getenv</font> ()        <font color="#008844">; return the current environment</font>
  '(progv '(*evalhook*) (list #'(lambda (exp env) env))
     (eval nil)))

(defmacro <font color="#0000CC">eval-env</font> (arg)   <font color="#008844">; evaluate in the current environment</font>
  `(evalhook ,arg nil nil (getenv)))
</pre>

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

<a name="getenv"></a>

<hr>

<h2>getenv</h2>

<hr>

<p>The 'getenv' macro returns the association list of the current lexical
environment:</p>

<pre class="example">
(let ((<font color="#AA5500">v1</font> 1)          <font color="#008844">; first variable</font>
      (<font color="#AA5500">v2</font> 2))         <font color="#008844">; second variable</font>
  (flet ((<font color="#0000CC">f1</font> (a) a)   <font color="#008844">; first function</font>
         (<font color="#0000CC">f2</font> (b) b))  <font color="#008844">; second function</font>
    (getenv)))

=&gt; ((((<font color="#AA5500">V2</font> . <font color="#444444">1</font>) (<font color="#AA5500">V1</font> . <font color="#444444">2</font>))) ((<font color="#0000CC">F2</font> . <font color="#444444">#&lt;Closure...&gt;</font>) (<font color="#0000CC">F1</font> . <font color="#444444">#&lt;Closure...&gt;</font>)))
</pre>

<p>The asymmetric layout is produced by
<a href="../reference/print.htm">print</a>, the real structure of the
lexical environment is a <a href="../reference/cons.htm">cons</a> of two
association lists:</p>

<pre class="example">
(defmacro <font color="#0000CC">print-env</font> ()
  (let ((env (gensym)))
    `(let ((,env (getenv)))
       (format t <font color="#880000">"(~s . ~s)~%"</font> (car ,env) (cdr ,env)))))
</pre>

<p><b>Note:</b> You could also use
<a href="lists.htm#print-cons">print-cons</a> instead of
<a href="../reference/format.htm">format</a> to print really all the
details of the list, but <a href="../reference/format.htm">format</a> is
enough for the examples here.</p>

<pre class="example">
(let ((<font color="#AA5500">v1</font> 1)          <font color="#008844">; first variable</font>
      (<font color="#AA5500">v2</font> 2))         <font color="#008844">; second variable</font>
  (flet ((<font color="#0000CC">f1</font> (a) a)   <font color="#008844">; first function</font>
         (<font color="#0000CC">f2</font> (b) b))  <font color="#008844">; second function</font>
    (print-env)))

((((<font color="#AA5500">V2</font> . <font color="#444444">2</font>) (<font color="#AA5500">V1</font> . <font color="#444444">1</font>))) . (((<font color="#0000CC">F2</font> . <font color="#444444">#&lt;Closure...&gt;</font>) (<font color="#0000CC">F1</font> . <font color="#444444">#&lt;Closure...&gt;</font>))))
</pre>

<p>The basic <nobr>layout is</nobr>:</p>

<pre class="example">
((((<font color="#AA5500">V2</font> . value) (<font color="#AA5500">V1</font> . value))) . (((<font color="#0000CC">F2</font> . value) (<font color="#0000CC">F1</font> . value))))

<font color="#444444">((&lt;----- <font color="#AA5500">variable-list</font> -----&gt;) . (&lt;----- <font color="#0000CC">function-list</font> -----&gt;))</font>

(car (getenv))  =&gt; (<font color="#AA5500">variable-list</font>)
(cdr (getenv))  =&gt; (<font color="#0000CC">function-list</font>)
</pre>

<p>The different levels of bindings are maintained via multiple
sublists:</p>

<pre class="example">
(let ((<font color="#AA5500">v1</font> 1))             <font color="#008844">; first level variable</font>
  (let ((<font color="#AA5500">v2</font> 2))           <font color="#008844">; second level variable</font>
    (flet ((<font color="#0000CC">f1</font> (a) a))    <font color="#008844">; first level function</font>
      (flet ((<font color="#0000CC">f2</font> (b) b))  <font color="#008844">; second level function</font>
        (print-env)))))

((((<font color="#AA5500">V2</font> . value)) ((<font color="#AA5500">V1</font> . value))) . (((<font color="#0000CC">F2</font> . value)) ((<font color="#0000CC">F1</font> . value))))

<font color="#444444">(((&lt;--<font color="#AA5500">level2</font>--&gt;) (&lt;--<font color="#AA5500">level1</font>--&gt;)) . ((&lt;--<font color="#0000CC">level2</font>--&gt;) (&lt;--<font color="#0000CC">level1</font>--&gt;)))</font>
<font color="#444444">((&lt;------ <font color="#AA5500">variable-list</font> ------&gt;) . (&lt;------ <font color="#0000CC">function-list</font> ------&gt;))</font>
</pre>

<p>Variables appear always in the variable list, functions always in the
function list:</p>

<pre class="example">
(let ((<font color="#AA5500">v1</font> 1))             <font color="#008844">; first level variable</font>
  (flet ((<font color="#0000CC">f1</font> (a) a))      <font color="#008844">; first level function</font>
    (let ((<font color="#AA5500">v2</font> 2))         <font color="#008844">; second level variable</font>
      (flet ((<font color="#0000CC">f2</font> (b) b))  <font color="#008844">; second level function</font>
        (print-env)))))

((((<font color="#AA5500">V2</font> . value)) ((<font color="#AA5500">V1</font> . value))) . (((<font color="#0000CC">F2</font> . value)) ((<font color="#0000CC">F1</font> . value))))

<font color="#444444">(((&lt;--<font color="#AA5500">level2</font>--&gt;) (&lt;--<font color="#AA5500">level1</font>--&gt;)) . ((&lt;--<font color="#0000CC">level2</font>--&gt;) (&lt;--<font color="#0000CC">level1</font>--&gt;)))</font>
<font color="#444444">((&lt;------ <font color="#AA5500">variable-list</font> ------&gt;) . (&lt;------ <font color="#0000CC">function-list</font> ------&gt;))</font>
</pre>

<p>The <nobr>inner-most</nobr> bindings always appear at the front of the
lists:</p>

<pre class="example">
(let ((<font color="#AA5500">v1</font> 1))             <font color="#008844">; first level variable</font>
  (let ((<font color="#AA5500">v2</font> 2))           <font color="#008844">; second level variable</font>
    (flet ((<font color="#0000CC">f1</font> (a) a))    <font color="#008844">; first level function</font>
      (flet ((<font color="#0000CC">f2</font> (b) b))  <font color="#008844">; second level function</font>
        (let ((<font color="#AA5500">v3</font> 3))     <font color="#008844">; third level variable</font>
          (print-env))))))

((((<font color="#AA5500">V3</font> . value)) ((<font color="#AA5500">V2</font> . value)) ((<font color="#AA5500">V1</font> . value))) . (((<font color="#0000CC">F2</font> . value)) ((<font color="#0000CC">F1</font> . value))))

<font color="#444444">(((&lt;--<font color="#AA5500">level3</font>--&gt;) (&lt;--<font color="#AA5500">level2</font>--&gt;) (&lt;--<font color="#AA5500">level1</font>--&gt;)) . ((&lt;--<font color="#0000CC">level2</font>--&gt;) (&lt;--<font color="#0000CC">level1</font>--&gt;)))</font>
<font color="#444444">((&lt;------------- <font color="#AA5500">variable-list</font> --------------&gt;) . (&lt;------ <font color="#0000CC">function-list</font> ------&gt;))</font>
</pre>

<p>There may appear several variable bindings in the same sublist:</p>

<pre class="example">
(let ((<font color="#AA5500">v1</font> 1) (<font color="#AA5500">v2</font> 2))      <font color="#008844">; first level variables</font>
  (flet ((<font color="#0000CC">f1</font> (a) a)       <font color="#008844">; first level functions</font>
         (<font color="#0000CC">f2</font> (b) b))
    (let ((<font color="#AA5500">v3</font> 3))         <font color="#008844">; second level variable</font>
      (print-env))))

((((V3 . value)) ((V2 . value) (V1 . value))) . (((F2 . value) (F1 . value))))

<font color="#444444">(((&lt;--<font color="#AA5500">level2</font>--&gt;) (&lt;--------<font color="#AA5500">level1</font>---------&gt;)) . ((&lt;---------<font color="#0000CC">level1</font>--------&gt;)))</font>
<font color="#444444">((&lt;------------ <font color="#AA5500">variable-list</font> -------------&gt;) . (&lt;----- <font color="#0000CC">function-list</font> -----&gt;))</font>
</pre>

<p>The basic principle is always the same:</p>

<pre class="example">
(((<font color="#AA5500">level n</font> <font color="#008844">...</font>) <font color="#008844">...</font> (<font color="#AA5500">level 1 variables</font>)) . ((<font color="#0000CC">level n</font> <font color="#008844">...</font>) <font color="#008844">...</font> (<font color="#0000CC">level 1 functions</font>)))

(car (getenv))  =&gt; ((<font color="#AA5500">level n</font> <font color="#008844">...</font>) (<font color="#AA5500">level n-1</font> <font color="#008844">...</font>) <font color="#008844">...</font> (<font color="#AA5500">level 1 variables</font>))
(cdr (getenv))  =&gt; ((<font color="#0000CC">level n</font> <font color="#008844">...</font>) (<font color="#0000CC">level n-1</font> <font color="#008844">...</font>) <font color="#008844">...</font> (<font color="#0000CC">level 1 functions</font>))
</pre>

<p>Also the function parameter variables appear in the the lexical
environment association list:</p>

<pre class="example">
(defun <font color="#0000CC">test</font> (<font color="#AA0000">parameter-var</font>)
  (let ((<font color="#AA5500">local-var</font> 'value))
    (print-env)))

((((<font color="#AA5500">LOCAL-VAR</font> . value)) ((<font color="#AA0000">PARAMETER-VAR</font> . value))) . NIL)  <font color="#008844">; NIL = no functions</font>

<font color="#444444">(((&lt;-----<font color="#AA5500">level2</font>------&gt;) (&lt;-------<font color="#AA5500">level1</font>--------&gt;)) . NIL)</font>
<font color="#444444">((&lt;--------------- <font color="#AA5500">variable-list</font> ---------------&gt;) . NIL)</font>
</pre>

<p>The variables bound by <a href="../reference/let.htm">let</a> appear
before the function's parameter variables, that's why
<a href="../reference/let.htm">let</a> bindings 'shadow' parameter variables
with the same name. <nobr>The 'test'</nobr> function name does not appear in
the environment list because the function name was
<a href="../reference/intern.htm">intern</a>ed in the
<a href="../reference/global-obarray.htm">*obarray*</a> by
<a href="../reference/defun.htm">defun</a>.</p>

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

<a name="eval-env"></a>

<hr>

<h2>eval-env</h2>

<hr>

<p>This still doen't work:</p>

<pre class="example">
(setq x 'global)        ; define a global variable 'x'

(defun print-x ()       ; define a function PRINT-X in the global environment
  (print (getenv))      ; always prints ((NIL)), also with EVAL-ENV or EVALHOOK
  (print x))            ; always prints GLOBAL, also with EVAL-ENV or EVALHOOK

(let ((x 'local))       ; create a lexical variable 'x'
  (print-x))            ; evaluate PRINT-X
=&gt; GLOBAL               ; value from the environment, where PRINT-X was defined

(let ((x 'local))       ; create a lexical variable 'x'
  (eval-env (print-x))  ; evaluate PRINT-X in the current environment
=&gt; GLOBAL  ;wrong       ; value from the environment, where PRINT-X was called

(let ((x 'local))       ; create a lexical variable 'x'
  (eval-env (funcall 'print-x))  ; evaluate PRINT-X in the current environment
=&gt; GLOBAL  ;wrong       ; value from the environment, where PRINT-X was called
</pre>

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

<a name="lboundp"></a>

<hr>

<h2>lboundp</h2>

<hr>

<p>The 'lboundp' function tests if a valid variable value is bound to a
symbol in the current lexical environment:</p>

<p><div class="box">

<dl>
<dt>(<b>lboundp</b> <i>symbol</i>)</dt>
<dd><i>symbol</i> - a quoted lisp symbol<br>
returns - <a href="../reference/t.htm">&nbsp;T&nbsp;</a> if a lexical
variable value is bound to the symbol, <a href="../reference/nil.htm">NIL</a> otherwise</dd>
</dl>

</div></p>

<pre class="example">
(defmacro <font color="#0000CC">lboundp</font> (symbol)
  (cond ((not (or (symbolp symbol)
                  (and (consp symbol)
                       (eq 'quote (car symbol))
                       (symbolp (cadr symbol)))))
         (error <font color="#880000">"bad argument type"</font> symbol))
        ((and (consp symbol) (cddr symbol))
         (error <font color="#880000">"too many arguments"</font>))
        (t (let ((a-cons (gensym)) (level (gensym)) (binding (gensym)))
             `(let ((,a-cons (dolist (,level (car (getenv)) nil)
                               (let ((,binding (assoc ,symbol ,level)))
                                 (when ,binding (return ,binding))))))
                (and ,a-cons (not (eq (cdr ,a-cons) '<font color="#AA5500">*unbound*</font>))))))))
</pre>

<p>The XLISP <a href="../reference/boundp.htm">boundp</a> function only
can test global variables, interned in the
<a href="../reference/global-obarray.htm">*obarray*</a>, so it cannot be
used to test if a symbol has a variable value bound to it in the lexical
environment:</p>

<pre class="example">
(defun <font color="#0000CC">test</font> (x)    <font color="#008844">; bad example</font>
  (if (boundp 'x)  <font color="#AA0000">; &lt;- global test</font>
      (print x)
      (print '*unbound*)))

(test 'hello!)     =&gt; *UNBOUND*  <font color="#AA0000">; bad result</font>
(test 123)         =&gt; *UNBOUND*  <font color="#AA0000">; bad result</font>

(setq x t)         =&gt; T          <font color="#008844">; create a global variable 'x'</font>

(test 'hello!)     =&gt; 'HELLO!    <font color="#008844">; OK</font>
(test 123)         =&gt; 123        <font color="#008844">; OK</font>
(test '*unbound*)  =&gt; <font color="#AA0000">error: unbound variable - X  ; bad result</font>
</pre>

<p>Here the same example with 'lboundp':</p>

<pre class="example">
(defun <font color="#0000CC">test</font> (x)     <font color="#008844">; good example</font>
  (if (lboundp 'x)  <font color="#008844">; &lt;- local test</font>
      (print x)
      (print '*unbound*)))

(test 'hello!)     =&gt; 'HELLO!    <font color="#008844">; OK</font>
(test 123)         =&gt; 123        <font color="#008844">; OK</font>
(test '*unbound*)  =&gt; *UNBOUND*  <font color="#008844">; OK</font>
</pre>

<p>The 'lboundp' function cannot test symbol values at the
<nobr>top-level</nobr>, because there is no lexical environment:</p>

<pre class="example">
(setq x t)    =&gt; T   <font color="#008844">; create a global variable 'x'</font>
(lboundp 'x)  =&gt; NIL <font color="#AA0000">; lexical test fails</font>
(boundp 'x)   =&gt; T   <font color="#008844">; global test succeeds</font>
</pre>

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

<a name="valuep"></a>

<hr>

<h2>valuep</h2>

<hr>

<p>The 'valuep' function tests if a valid variable value is bound to a
symbol at any level:</p>

<pre class="example">
(defmacro <font color="#0000CC">valuep</font> (symbol)
  (cond ((not (or (symbolp symbol)
                  (and (consp symbol)
                       (eq 'quote (car symbol))
                       (symbolp (cadr symbol)))))
         (error <font color="#880000">"bad argument type"</font> ,symbol))
        ((and (consp symbol) (cddr symbol))
         (error <font color="#880000">"too many arguments"</font>))
        (t (let ((a-cons (gensym)) (level (gensym)) (binding (gensym)))
             `(let ((,a-cons (dolist (,level (car (getenv)) nil)
                               (let ((,binding (assoc ,symbol ,level)))
                                 (when ,binding (return ,binding))))))
                (if ,a-cons
                    (not (eq (cdr ,a-cons) '<font color="#AA5500">*unbound*</font>))
                    (boundp ,symbol)))))))
</pre>

<p>It's tricky to test if a symbol has a valid variable value bound to
it because if the symbol is bound to
<a href="../reference/global-unbound.htm">*unbound*</a> in a lexical
environment, it still shadows a symbol with the same name in the
<a href="../reference/global-obarray.htm">*obarray*</a>, making a possibly
existing global variable inaccessible, like shown in the examples
below.</p>

<p><b>Note:</b> The lexical environment must be tested first, because this
is the way how XLISP searches for symbol bindings.</p>

<p>Examples:</p>

<pre class="example">
(when (valuep 'x) x)  =&gt; NIL  <font color="#008844">; no global binding of 'x' found</font>
(setq x 'ok)          =&gt; OK   <font color="#008844">; create a global variable 'x'</font>
(when (valuep 'x) x)  =&gt; OK   <font color="#008844">; global binding of 'x' found</font>

(let ((x 'local))             <font color="#008844">; create a lexical variable 'x'</font>
  (when (valuep 'x) x))       <font color="#008844">; try to access the lexical variable</font>
=&gt; LOCAL                      <font color="#008844">; lexical binding of 'x' found</font>
</pre>

<p>XLISP problems with
<a href="../reference/global-unbound.htm">*unbound*</a>
lexical variables:</p>

<pre class="example">
(setq x 'ok)          =&gt; OK   <font color="#008844">; create a global variable 'x'</font>
(when (valuep 'x) x)  =&gt; OK   <font color="#008844">; global binding of 'x' found</font>

(let ((x '*unbound*))         <font color="#008844">; create an unbound lexical variable 'x'</font>
  (when (valuep 'x) x))       <font color="#008844">; try to access the global variable</font>
=&gt; <font color="#AA0000">NIL                        ; global binding of 'x' NOT found</font>

(let ((x '*unbound*))         <font color="#008844">; create an unbound lexical variable 'x'</font>
  x)                          <font color="#008844">; try to access the global variable</font>
<font color="#AA0000">error: unbound variable - X</font>
</pre>

<p>The 'valuep' function recognizes if a global variable value is shadowed
by an <a href="../reference/global-unbound.htm">*unbound*</a> lexical
variable and returns NIL if the global variable is inaccessible..</p>

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

<a name="lfboundp"></a>

<hr>

<h2>lfboundp</h2>

<hr>

<p>The 'lfboundp' function tests if a valid function value is bound to a
symbol in the current lexical environment:</p>

<p><div class="box">

<dl>
<dt>(<b>lfboundp</b> <i>symbol</i>)</dt>
<dd><i>symbol</i> - a quoted lisp symbol<br>
returns - <a href="../reference/t.htm">&nbsp;T&nbsp;</a> if a lexical
function value is bound to the symbol, <a href="../reference/nil.htm">NIL</a> otherwise</dd>
</dl>

</div></p>

<pre class="example">
(defmacro <font color="#0000CC">lfboundp</font> (symbol)
  (cond ((not (or (symbolp symbol)
                  (and (consp symbol)
                       (eq 'quote (car symbol))
                       (symbolp (cadr symbol)))))
         (error <font color="#880000">"bad argument type"</font> symbol))
        ((and (consp symbol) (cddr symbol))
         (error <font color="#880000">"too many arguments"</font>))
        (t (let ((a-cons (gensym)) (level (gensym)) (binding (gensym)))
             `(let ((,a-cons (dolist (,level (cdr (getenv)) nil)
                               (let ((,binding (assoc ,symbol ,level)))
                                 (when ,binding (return ,binding))))))
                (and ,a-cons (not (eq (cdr ,a-cons) '<font color="#AA5500">*unbound*</font>))))))))
</pre>

<p>The XLISP <a href="../reference/fboundp.htm">fboundp</a> function only
works with symbols interned in the
<a href="../reference/global-obarray.htm">*obarray*</a>, so it cannot be
used to test if a symbol has a function value bound to it in the lexical
environment:</p>

<pre class="example">
(flet ((my-function (x) 'hello))
  (fboundp 'my-function))   <font color="#AA0000">; &lt;- global test</font>
=&gt; NIL

(flet ((my-function (x) 'hello))
  (lfboundp 'my-function))  <font color="#008844">; &lt;- local test</font>
=&gt; T
</pre>

<p>The 'lfboundp' function cannot test symbol function values at the
<nobr>top-level</nobr>, because there is no lexical environment:</p>

<pre class="example">
(lfboundp 'car)  =&gt; NIL <font color="#AA0000">; lexical test fails</font>
(fboundp 'car)   =&gt; T   <font color="#008844">; global test succeeds</font>
</pre>

<p>Problems with <a href="../reference/global-unbound.htm">*unbound*</a>
lexical functions are less likely then with
<a href="../reference/global-unbound.htm">*unbound*</a> parameter
variables, because there is no <nobr>buit-in</nobr> way to bind a lexical
function to <a href="../reference/global-unbound.htm">*unbound*</a>.</p>

<p>See also:</p>

<ul>
<li><nobr><a href="predicates.htm#subrp">suprp</a> - is this a built-in function?</nobr></li>
<li><nobr><a href="predicates.htm#fsubrp">fsubrp</a> - is this a built-in special form?</nobr></li>
<li><nobr><a href="predicates.htm#closurep">closurep</a> - is this a user-defined function or macro?</nobr></li>
<li><nobr><a href="predicates.htm#functionp">functionp</a> - is this a build-in or a user-defined function?</nobr></li>
<li><nobr><a href="predicates.htm#macrop">macrop</a> - is this a user-defined macro?</nobr></li>
</ul>

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

<a name="lsymbol-value"></a>

<hr>

<h2>lsymbol-value</h2>

<hr>

<p>The function 'lsymbol-value' returns a variable value from the lexical
environment:</p>

<pre class="example">
(defmacro <font color="#0000CC">lsymbol-value</font> (symbol)
  (cond ((not (or (symbolp symbol)
                  (and (consp symbol)
                       (eq 'quote (car symbol))
                       (symbolp (cadr symbol)))))
         (error <font color="#880000">"bad argument type"</font> symbol))
        ((and (consp ,symbol) (cddr symbol))
         (error <font color="#880000">"too many arguments"</font>))
        (t (let ((a-cons (gensym)) (level (gensym)) (binding (gensym)))
             `(let ((,a-cons (dolist (,level (car (getenv)) nil)
                               (let ((,binding (assoc ,symbol ,level)))
                                 (when ,binding (return ,binding))))))
                (when ,a-cons
                    (if (eq (cdr ,a-cons) '<font color="#AA5500">*unbound*</font>)
                        '*unbound*
                        (cdr ,a-cons))))))))
</pre>

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

<a name="lsymbol-function"></a>

<hr>

<h2>lsymbol-function</h2>

<hr>

<p>The function 'lsymbol-function' returns a function value from the lexical
environment:</p>

<pre class="example">
(defmacro <font color="#0000CC">lsymbol-function</font> (symbol)
  (cond ((not (or (symbolp symbol)
                  (and (consp symbol)
                       (eq 'quote (car symbol))
                       (symbolp (cadr symbol)))))
         (error <font color="#880000">"bad argument type"</font> symbol))
        ((and (consp symbol) (cddr symbol))
         (error <font color="#880000">"too many arguments"</font>))
        (t (let ((a-cons (gensym)) (level (gensym)) (binding (gensym)))
             `(let ((,a-cons (dolist (,level (cdr (getenv)) nil)
                               (let ((,binding (assoc ,symbol ,level)))
                                 (when ,binding (return ,binding))))))
                (when ,a-cons
                  (if (eq (cdr ,a-cons) '<font color="#AA5500">*unbound*</font>)
                      '*unbound*
                      (cdr ,a-cons))))))))
</pre>

<p>The XLISP function
<nobr><a href="../reference/symbol-function.htm">symbol-function</a></nobr>
only works with symbols interned in the
<a href="../reference/global-obarray.htm">*obarray*</a>, so it cannot return
a function value, bound to a symbol in the lexical environment:</p>

<pre class="example">
(flet ((my-function (x) 'hello))
  (symbol-function 'my-function))  <font color="#AA0000">; &lt;- searches the *obarray*</font>
=&gt; <font color="#AA0000">error: unbound function - MY-FUNCTION</font>

(flet ((my-function (x) 'hello))
  (lsymbol-function 'my-function)) <font color="#008844">; &lt;- searches the lexical environment</font>
=&gt; #&lt;Closure-MY-FUNCTION...&gt;
</pre>

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

<a name="lmacroexpand-1"></a>

<hr>

<h2>lmacroexpand-1</h2>

<hr>

<pre class="example">
(defmacro <font color="#0000CC">with-static-env</font> (&rest body)
  (let ((env (gensym)) (rval (gensym)))
    `(let ((,env (getenv)))  <font color="#008844">; environment snapshot</font>
       (progv '(*evalhook*)
              '((lambda (exp env)
                 (labels ((,rval (exp env) <font color="#008844">; recursive eval</font>
                            (format t "exp: ~a env: ~a ,env: ~a~%" exp env ,env)
                            (evalhook exp #',rval NIL ,env)))
                   (format t "exp: ~a env: ~a ,env: ~a~%" exp env ,env)
                   (evalhook exp #',rval NIL ,env))))
         ,@body))))
</pre>

<pre class="example">
(defmacro <font color="#0000CC">with-dynamic-env</font> (&rest body)
  (let ((env (gensym)) (rval (gensym)))
    `(let ((,env (getenv)))  <font color="#008844">; environment snapshot</font>
       (progv '(*evalhook*)
              '((lambda (exp env)
                 (labels ((,rval (exp env) <font color="#008844">; recursive eval</font>
                            (format t "inner exp: ~a env: ~a~%" exp env)
                            (evalhook exp #',rval NIL env)))
                   (format t "outer exp: ~a env: ~a~%" exp env)
                   (evalhook exp #',rval NIL env))))
         ,@body))))
</pre>

<pre class="example">
(defun <font color="#0000CC">display-env</font> (env &amp;optional (exp nil exp-p))
  (flet ((display-bindings (name bindings)
    (format t <font color="#880000">" ~a bindings: ~s~%"</font> name bindings)
    (let ((frame-counter 1))
      (dolist (frame bindings)
        (format t <font color="#880000">"  ~a frame ~a: ~a~%"</font> name frame-counter frame)
        (let ((binding-counter 1))
          (dolist (binding frame)
            (when (consp binding)
              (format t <font color="#880000">"   ~a ~a: ~s - value: ~s~%"</font>
                  name binding-counter (car binding) (cdr binding))
              (incf binding-counter))))
        (incf frame-counter)))))
    (when exp-p (format t <font color="#880000">"eval: ~s~%"</font> exp))
    (format t <font color="#880000">"environment: ~s~%"</font> env)
    (display-bindings <font color="#880000">"variable"</font> (car env))
    (display-bindings <font color="#880000">"function"</font> (cdr env))))

(defmacro <font color="#0000CC">debug:env</font> ()
  '(progv '(*evalhook*) '(nil)
     (display-env (getenv))))

(defmacro <font color="#0000CC">debug:env</font> ()
  '(progv '(*evalhook*) '((lambda (exp env)
                            (display-env env)))
     (eval nil)))

(defmacro <font color="#0000CC">debug:env</font> (&rest body)
  (when *evalhook*
    (format t "DEBUG:ENV ")
    (format t "*evalhook* was already modified~%"))
  (if (null body)
      '(progv '(<font color="#AA5500">*evalhook*</font>) '((lambda (exp env)
                                (display-env env)))
         (eval nil))
      (let ((init (gensym)) (rval (gensym)))
        `(let ((,init (getenv)))  <font color="#008844">; environment snapshot</font>
           (progv '(<font color="#AA5500">*evalhook*</font>)
                  '((lambda (exp env)
                     (labels ((,rval (exp env) <font color="#008844">; recursive eval</font>
                                (display-env env exp)
                                (evalhook exp #',rval nil env)))
                       (display-env ,init exp)
                       (evalhook exp #',rval nil ,init))))
             ,@body)))))

(defmacro <font color="#0000CC">with-evalhook</font> (&amp;rest body)
  (let ((init (gensym)) (rval (gensym)) (hook (gensym)) debug)
    `(let ((,init (getenv)))  <font color="#008844">; environment snapshot</font>
       (progv '(<font color="#AA5500">*evalhook*</font>)
              '((lambda (exp env)
                 (labels ((,rval (exp env)  <font color="#008844">; recursive eval</font>
                            ,(print *evalhook*)
                            ,(when T `(funcall ,*evalhook* exp env))

                            (evalhook exp #',rval nil env)))
                   (evalhook exp #',rval nil ,init))))
         ,@body))))

(defmacro <font color="#0000CC">with-current-environment</font> (&amp;rest body)
  (when <font color="#AA5500">*evalhook*</font> (error <font color="#880000">"*evalhook* already modified"</font>))
  (let ((init (gensym)) (rval (gensym)) debug)
    (when (eq :debug (car body)) (setq debug t body (cdr body)))
    `(let ((,init (getenv)))  <font color="#008844">; environment snapshot</font>
       (progv '(<font color="#AA5500">*evalhook*</font>)
              '((lambda (exp env)
                 (labels ((,rval (exp env)  <font color="#008844">; recursive eval</font>
                            <font color="#008844">;; append environment from snapshot</font>
                            (setq env (cons (append (car env) (car ,init))
                                            (append (cdr env) (cdr ,init))))
                            ,(when debug '(display-env env exp))
                            (evalhook exp #',rval nil env)))
                   <font color="#008844">;; start with environment snapshot</font>
                   ,(when debug `(display-env ,init exp))
                   (evalhook exp #',rval nil ,init))))
         ,@body))))

(defmacro <font color="#0000CC">with-env</font> (&amp;rest body)
  (let ((init (gensym)) (rval (gensym)))
    `(let ((,init (getenv)))  <font color="#008844">; environment snapshot</font>
       (progv '(*evalhook*)
              '((lambda (exp env)
                 (labels ((,rval (exp env) <font color="#008844">; recursive eval</font>
                            (display-env env exp)
                            (evalhook exp #',rval nil env)))
                   (display-env ,init exp)
                   (evalhook exp #',rval nil ,init))))
         ,@body))))
</pre>

<pre class="example">
(with-current-environment
  (debug:env
    body))

(progv '(*evalhook)
       '((lambda (exp env)
           (labels ((rval (exp env)
                      (append-current-environment)
                      (debug:env ...)
                      (evalhook exp #'rval nil env)))
             (evalhook exp #'rval nil init)))))

(debug:env
  (with-current-environment
    body))

(progv '(*evalhook)
       '((lambda (exp env)
           (labels ((rval (exp env)
</pre>

<pre class="example">
(defmacro <font color="#0000CC">with-current-environment</font> (&amp;rest body)
  (when <font color="#AA5500">*evalhook*</font> (error <font color="#880000">"*evalhook* already modified"</font>))
  (let ((debug nil) (init (gensym)) (rval (gensym)))
    (when (eq :debug (car body)) (setq debug t body (cdr body)))
    `(let ((,init (getenv)))  <font color="#008844">; environment snapshot</font>
       (progv '(<font color="#AA5500">*evalhook*</font>)
              '((lambda (exp env)
                 (labels ((,rval (exp env)  <font color="#008844">; recursive eval</font>
                            ,(cond (debug
                                    `(setq env
                                       (cons (append (car env) (car ,init))
                                             (append (cdr env) (cdr ,init))))
                                    '(display-env env exp)
                                    `(evalhook exp #',rval nil env))
                                   (t
                                    `(evalhook exp #',rval nil
                                       (cons (append (car env) (car ,init))
                                             (append (cdr env) (cdr ,init))))))))
                   ,(when debug `(display-env ,init exp))
                   (evalhook exp #',rval nil ,init))))
         ,@body))))
</pre>

<pre class="example">
(setq *rvalhook* nil)

(defmacro <font color="#0000CC">with-current-environment</font> (&amp;rest body)
  (let ((init (gensym)))
    `(let ((,init (getenv)))
       (rval-env #'(lambda (exp env)
                     (cons exp (cons (append (car env) (car ,init))
                                     (append (cdr env) (cdr ,init)))))
                 ,@body))))

(defmacro debug:env (&amp;rest body)
  (rval-env #'(lambda (exp env)
                (display-env env exp)
                (cons exp env))
            ,@body))

(defmacro <font color="#0000CC">run-rvalhooks</font> ()
  (let ((func (gensym)) (result (gensym)))
    `(dolist (,func <font color="#AA5500">*rvalhook*</font>)
       (format t "func: ~a~%" ,func)
       (format t "exp: ~a~%" exp)
       (format t "env: ~a~%" env)
       (let ((,result (eval (list ,func 'exp 'env) )))
         (format t "result: ~a~%" ,result)
         (format t "exp: ~a~%" exp)
         (format t "car: ~a~%" (car ,result))
         (format t "env: ~a~%" env)
         (format t "cdr: ~a~%" (cdr ,result))
         (setq exp (car ,result) env (cdr ,result)) 
  ))))

(defmacro <font color="#0000CC">rval-env</font> (function &amp;rest body)
  (format t "function: ~a~%" function)
  (format t "body: ~a~%" body)
  (or <font color="#AA5500">*evalhook*</font> (setq <font color="#AA5500">*rvalhook*</font> nil))
  (format t "*rvalhook*: ~a~%" *rvalhook*)
  (if <font color="#AA5500">*rvalhook*</font>
      `(prog2
         (push ,function <font color="#AA5500">*rvalhook*</font>)
         (progn ,@body)
         (setq <font color="#AA5500">*rvalhook*</font> (remove ,function <font color="#AA5500">*rvalhook*</font>)))
      (let ((rval (gensym)) (func (gensym)) (result (gensym)))
        `(prog2
           (push ,function <font color="#AA5500">*rvalhook*</font>)
           (progv '(<font color="#AA5500">*evalhook*</font>)
                  `((lambda (exp env)
                      (print 'hallo)
                      (labels ((,rval (exp env)
                                 (run-rvalhooks)
                                 (evalhook exp #',rval nil env)))
                        ; (run-rvalhooks)
                        (evalhook exp #',rval nil env))))
             ,@body)
           (setq <font color="#AA5500">*rvalhook*</font> (remove ,function <font color="#AA5500">*rvalhook*</font>))))))
</pre>

<p>*rvalhook* must be a list of functions, each taking two arguments 'exp'
[the Lisp expressions to evaluate] and 'env' [the environment], returning
a cons of the format <nobr>(exp . env)</nobr>.</p>

<p>In case of an error, the
<a href="../reference/global-evalhook.htm">*evalhook*</a> variable is
automatically reset by the XLISP
<nobr><a href="../reference/top-level.htm">top-level</a></nobr> function.
This means that if <a href="../reference/global-evalhook.htm">*evalhook*</a>
is <a href="../reference/nil.htm">NIL</a> and *rvalhook* is
<nobr>non-<a href="../reference/nil.htm">NIL</a></nobr>, then *rvalhook* is
invalid and must also be reset to <a href="../reference/nil.htm">NIL</a>
before pushing the next function <nobr>on it</nobr>.</p>

<pre class="example">
(defmacro <font color="#0000CC">lmacroexpand-1</font> (form)
  (if (not (and (consp form)
                (eq 'quote (car form))
                (symbolp (caadr form))))
      form  <font color="#008844">; if the form isn't '(symbol ... )</font>
      (let ((a-cons (gensym)) (l-expr (gensym)))
        `(let ((,a-cons (assoc ',(caadr form) (cadr (getenv)))))
           (if (null ,a-cons)  <font color="#008844">; (caadr form) = macro-name</font>
               ,form  <font color="#008844">; if no lexical binding was found</font>
               (let ((,l-expr (get-lambda-expression (cdr ,a-cons))))
                 (if (eq 'macro (car ,l-expr)) <font color="#008844">; if l-expr is a macro</font>
                     (with-current-environment
                       <font color="#008844">;; create an *unbound* macro in the *obarray*</font>
                       (eval (append '(defmacro *unbound*) (cdr ,l-expr)))
                       <font color="#008844">;; expand the macro in the current environment</font>
                       (eval (list 'macroexpand-1  <font color="#008844">; (cdadr form) =</font>
                                   (list 'quote    <font color="#008844">; macro-arguments as list</font>
                                         (cons '*unbound* ',(cdadr form))))))
                     ,form)))))))  <font color="#008844">; if l-expr is not a macro</font>
</pre>

<pre class="example">
(let ((x 1))
  (macrolet ((test (arg)
               `(progn
                  (print ,arg)
                  (print ,(eval x)))))
    (lmacroexpand-1 '(test 'hallo))))
=&gt;
</pre>

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

<a name="known-problems"></a>

<hr>

<h2>Known Problems</h2>

<hr>

<p>A lexical variable with the symbol
<a href="../reference/global-unbound.htm">*unbound*</a> as a variable value
bound to it will continue to shadow a global variable with the same name,
even if the the lexical variable is 'unbound':</p>

<pre class="example">
(setq x t)  =&gt; T        <font color="#008844">; create a global variable 'x'</font>

(let ((x '*unbound*))   <font color="#008844">; create an unbound lexical variable 'x'</font>
  (print x))            <font color="#008844">; try to print the global variable</font>
<font color="#AA0000">error: unbound variable - X</font>
</pre>

<p>Tested with <nobr>Nyquist 3.03</nobr> in <nobr>December 2010</nobr>.</p>

<p><b>Nyquist Bug:</b> let* causes infinite recursion problems with either
progv, evalhook, or *evalhook* [still needs more investigation], so this
doesnt work:</p>

<pre class="example">
(let* ((init (getenv)))
  (progv '(*evalhook*)
         '((lambda (exp env)
             (labels ((rval (exp env)
                        (print init)  <font color="#AA0000">; &lt;- causes infinite recursion</font>
                        (evalhook exp #'rval nil env)))
               (evalhook exp #'rval nil init))))
    (eval nil)))
=&gt; <font color="#AA0000">infinite recursion</font>
</pre>

while exactly the same form using let instead of let* works:

<pre class="example">
(let ((init (getenv)))
  (progv '(*evalhook*)
         '((lambda (exp env)
             (labels ((rval (exp env)
                        (print init)  <font color="#008844">; &lt;- no infinite recursion</font>
                        (evalhook exp #'rval nil env)))
               (evalhook exp #'rval nil init))))
    (eval nil)))
(NIL)  <font color="#008844">; PRINT output</font>
=&gt; NIL
</pre>

<p>Bug tested with <nobr>Nyquist 3.03</nobr> in <nobr>December 2010</nobr>.</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>