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 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
|
%\vfill\eject
\chapter{Expressions}
\label{expressionchapter}
\newcommand{\syntax}{{\em Syntax: }}
\newcommand{\semantics}{{\em Semantics: }}
%[Deleted for R5RS because of multiple-value returns. -RK]
%A Scheme expression is a construct that returns a value, such as a
%variable reference, literal, procedure call, or conditional.
Expression types are categorized as {\em primitive} or {\em derived}.
Primitive expression types include variables and procedure calls.
Derived expression types are not semantically primitive, but can instead
be defined as macros.
With the exception of {\cf quasiquote}, whose macro definition is complex,
the derived expressions are classified as library features.
Suitable definitions are given in section~\ref{derivedsection}.
\section{Primitive expression types}
\label{primitivexps}
\subsection{Variable references}\unsection
\begin{entry}{%
\pproto{\hyper{variable}}{\exprtype}}
An expression consisting of a variable\index{variable}
(section~\ref{variablesection}) is a variable reference. The value of
the variable reference is the value stored in the location to which the
variable is bound. It is an error to reference an
unbound\index{unbound} variable.
\begin{scheme}
(define x 28)
x \ev 28%
\end{scheme}
\end{entry}
\subsection{Literal expressions}\unsection
\label{literalsection}
\begin{entry}{%
\proto{quote}{ \hyper{datum}}{\exprtype}
\pproto{\singlequote\hyper{datum}}{\exprtype}
\pproto{\hyper{constant}}{\exprtype}}
{\cf (quote \hyper{datum})} evaluates to \hyper{datum}.\mainschindex{'}
\hyper{Datum}
may be any external representation of a Scheme object (see
section~\ref{externalreps}). This notation is used to include literal
constants in Scheme code.
\begin{scheme}%
(quote a) \ev a
(quote \sharpsign(a b c)) \ev \#(a b c)
(quote (+ 1 2)) \ev (+ 1 2)%
\end{scheme}
{\cf (quote \hyper{datum})} may be abbreviated as
\singlequote\hyper{datum}. The two notations are equivalent in all
respects.
\begin{scheme}
'a \ev a
'\#(a b c) \ev \#(a b c)
'() \ev ()
'(+ 1 2) \ev (+ 1 2)
'(quote a) \ev (quote a)
''a \ev (quote a)%
\end{scheme}
Numerical constants, string constants, character constants, and boolean
constants evaluate ``to themselves''; they need not be quoted.
\begin{scheme}
'"abc" \ev "abc"
"abc" \ev "abc"
'145932 \ev 145932
145932 \ev 145932
'\schtrue \ev \schtrue
\schtrue \ev \schtrue%
\end{scheme}
As noted in section~\ref{storagemodel}, it is an error to alter a constant
(i.e.~the value of a literal expression) using a mutation procedure like
{\cf set-car!}\ or {\cf string-set!}.
\end{entry}
\subsection{Procedure calls}\unsection
\begin{entry}{%
\pproto{(\hyper{operator} \hyperi{operand} \dotsfoo)}{\exprtype}}
A procedure call is written by simply enclosing in parentheses
expressions for the procedure to be called and the arguments to be
passed to it. The operator and operand expressions are evaluated (in an
unspecified order) and the resulting procedure is passed the resulting
arguments.\mainindex{call}\mainindex{procedure call}
\begin{scheme}%
(+ 3 4) \ev 7
((if \schfalse + *) 3 4) \ev 12%
\end{scheme}
A number of procedures are available as the values of variables in the
initial environment; for example, the addition and multiplication
procedures in the above examples are the values of the variables {\cf +}
and {\cf *}. New procedures are created by evaluating \lambdaexp{}s
(see section~\ref{lambda}).
\todo{At Friedman's request, flushed mention of other ways.}
% or definitions (see section~\ref{define}).
Procedure calls may return any number of values (see \ide{values} in
section~\ref{proceduresection}). With the exception of {\cf values}
the procedures available in the initial environment return one
value or, for procedures such as {\cf apply}, pass on the values returned
by a call to one of their arguments.
Procedure calls are also called {\em combinations}.
\mainindex{combination}
\begin{note} In contrast to other dialects of Lisp, the order of
evaluation is unspecified, and the operator expression and the operand
expressions are always evaluated with the same evaluation rules.
\end{note}
\begin{note}
Although the order of evaluation is otherwise unspecified, the effect of
any concurrent evaluation of the operator and operand expressions is
constrained to be consistent with some sequential order of evaluation.
The order of evaluation may be chosen differently for each procedure call.
\end{note}
\begin{note} In many dialects of Lisp, the empty combination, {\tt
()}, is a legitimate expression. In Scheme, combinations must have at
least one subexpression, so {\tt ()} is not a syntactically valid
expression. \todo{Dybvig: ``it should be obvious from the syntax.''}
\end{note}
\todo{Freeman:
I think an explanation as to why evaluation order is not specified
should be included. It should not include any reference to parallel
evaluation. Does any existing compiler generate better code because
the evaluation order is unspecified? Clinger: yes: T3, MacScheme v2,
probably MIT Scheme and Chez Scheme. But that's not the main reason
for leaving the order unspecified.}
\end{entry}
\subsection{Procedures}\unsection
\label{lamba}
\begin{entry}{%
\proto{lambda}{ \hyper{formals} \hyper{body}}{\exprtype}}
\syntax
\hyper{Formals} should be a formal arguments list as described below,
and \hyper{body} should be a sequence of one or more expressions.
\semantics
\vest A \lambdaexp{} evaluates to a procedure. The environment in
effect when the \lambdaexp{} was evaluated is remembered as part of the
procedure. When the procedure is later called with some actual
arguments, the environment in which the \lambdaexp{} was evaluated will
be extended by binding the variables in the formal argument list to
fresh locations, the corresponding actual argument values will be stored
in those locations, and the expressions in the body of the \lambdaexp{}
will be evaluated sequentially in the extended environment.
The result(s) of the last expression in the body will be returned as
the result(s) of the procedure call.
\begin{scheme}
(lambda (x) (+ x x)) \ev {\em{}a procedure}
((lambda (x) (+ x x)) 4) \ev 8
(define reverse-subtract
(lambda (x y) (- y x)))
(reverse-subtract 7 10) \ev 3
(define add4
(let ((x 4))
(lambda (y) (+ x y))))
(add4 6) \ev 10%
\end{scheme}
\hyper{Formals} should have one of the following forms:
\begin{itemize}
\item {\tt(\hyperi{variable} \dotsfoo)}:
The procedure takes a fixed number of arguments; when the procedure is
called, the arguments will be stored in the bindings of the
corresponding variables.
\item \hyper{variable}:
The procedure takes any number of arguments; when the procedure is
called, the sequence of actual arguments is converted into a newly
allocated list, and the list is stored in the binding of the
\hyper{variable}.
\item {\tt(\hyperi{variable} \dotsfoo{} \hyper{variable$_{n}$}\ {\bf.}\
\hyper{variable$_{n+1}$})}:
If a space-delimited period precedes the last variable, then
the procedure takes $n$ or more arguments, where $n$ is the
number of formal arguments before the period (there must
be at least one).
The value stored in the binding of the last variable will be a
newly allocated
list of the actual arguments left over after all the other actual
arguments have been matched up against the other formal arguments.
\end{itemize}
It is an error for a \hyper{variable} to appear more than once in
\hyper{formals}.
\begin{scheme}
((lambda x x) 3 4 5 6) \ev (3 4 5 6)
((lambda (x y . z) z)
3 4 5 6) \ev (5 6)%
\end{scheme}
Each procedure created as the result of evaluating a \lambdaexp{} is
(conceptually) tagged
with a storage location, in order to make \ide{eqv?} and
\ide{eq?} work on procedures (see section~\ref{equivalencesection}).
\end{entry}
\subsection{Conditionals}\unsection
\begin{entry}{%
\proto{if}{ \hyper{test} \hyper{consequent} \hyper{alternate}}{\exprtype}
\rproto{if}{ \hyper{test} \hyper{consequent}}{\exprtype}} %\/ if hyper = italic
\syntax
\hyper{Test}, \hyper{consequent}, and \hyper{alternate} may be arbitrary
expressions.
\semantics
An {\cf if} expression is evaluated as follows: first,
\hyper{test} is evaluated. If it yields a true value\index{true} (see
section~\ref{booleansection}), then \hyper{consequent} is evaluated and
its value(s) is(are) returned. Otherwise \hyper{alternate} is evaluated and its
value(s) is(are) returned. If \hyper{test} yields a false value and no
\hyper{alternate} is specified, then the result of the expression is
unspecified.
\begin{scheme}
(if (> 3 2) 'yes 'no) \ev yes
(if (> 2 3) 'yes 'no) \ev no
(if (> 3 2)
(- 3 2)
(+ 3 2)) \ev 1%
\end{scheme}
\end{entry}
\subsection{Assignments}\unsection
\label{assignment}
\begin{entry}{%
\proto{set!}{ \hyper{variable} \hyper{expression}}{\exprtype}}
\hyper{Expression} is evaluated, and the resulting value is stored in
the location to which \hyper{variable} is bound. \hyper{Variable} must
be bound either in some region\index{region} enclosing the {\cf set!}\ expression
or at top level. The result of the {\cf set!} expression is
unspecified.
\begin{scheme}
(define x 2)
(+ x 1) \ev 3
(set! x 4) \ev \unspecified
(+ x 1) \ev 5%
\end{scheme}
\end{entry}
\section{Derived expression types}
\label{derivedexps}
The constructs in this section are hygienic, as discussed in
section~\ref{macrosection}.
For reference purposes, section~\ref{derivedsection} gives macro definitions
that will convert most of the constructs described in this section
into the primitive constructs described in the previous section.
\todo{Mention that no definition of backquote is provided?}
\subsection{Conditionals}\unsection
\begin{entry}{%
\proto{cond}{ \hyperi{clause} \hyperii{clause} \dotsfoo}{library \exprtype}}
\syntax
Each \hyper{clause} should be of the form
\begin{scheme}
(\hyper{test} \hyperi{expression} \dotsfoo)%
\end{scheme}
where \hyper{test} is any expression. Alternatively, a \hyper{clause} may be
of the form
\begin{scheme}
(\hyper{test} => \hyper{expression})%
\end{scheme}
The last \hyper{clause} may be
an ``else clause,'' which has the form
\begin{scheme}
(else \hyperi{expression} \hyperii{expression} \dotsfoo)\rm.%
\end{scheme}
\mainschindex{else}
\mainschindex{=>}
\semantics
A {\cf cond} expression is evaluated by evaluating the \hyper{test}
expressions of successive \hyper{clause}s in order until one of them
evaluates to a true value\index{true} (see
section~\ref{booleansection}). When a \hyper{test} evaluates to a true
value, then the remaining \hyper{expression}s in its \hyper{clause} are
evaluated in order, and the result(s) of the last \hyper{expression} in the
\hyper{clause} is(are) returned as the result(s) of the entire {\cf cond}
expression. If the selected \hyper{clause} contains only the
\hyper{test} and no \hyper{expression}s, then the value of the
\hyper{test} is returned as the result. If the selected \hyper{clause} uses the
\ide{=>} alternate form, then the \hyper{expression} is evaluated.
Its value must be a procedure that accepts one argument; this procedure is then
called on the value of the \hyper{test} and the value(s) returned by this
procedure is(are) returned by the {\cf cond} expression.
If all \hyper{test}s evaluate
to false values, and there is no else clause, then the result of
the conditional expression is unspecified; if there is an else
clause, then its \hyper{expression}s are evaluated, and the value(s) of
the last one is(are) returned.
\begin{scheme}
(cond ((> 3 2) 'greater)
((< 3 2) 'less)) \ev greater%
(cond ((> 3 3) 'greater)
((< 3 3) 'less)
(else 'equal)) \ev equal%
(cond ((assv 'b '((a 1) (b 2))) => cadr)
(else \schfalse{})) \ev 2%
\end{scheme}
\end{entry}
\begin{entry}{%
\proto{case}{ \hyper{key} \hyperi{clause} \hyperii{clause} \dotsfoo}{library \exprtype}}
\syntax
\hyper{Key} may be any expression. Each \hyper{clause} should have
the form
\begin{scheme}
((\hyperi{datum} \dotsfoo) \hyperi{expression} \hyperii{expression} \dotsfoo)\rm,%
\end{scheme}
where each \hyper{datum} is an external representation of some object.
All the \hyper{datum}s must be distinct.
The last \hyper{clause} may be an ``else clause,'' which has the form
\begin{scheme}
(else \hyperi{expression} \hyperii{expression} \dotsfoo)\rm.%
\end{scheme}
\schindex{else}
\semantics
A {\cf case} expression is evaluated as follows. \hyper{Key} is
evaluated and its result is compared against each \hyper{datum}. If the
result of evaluating \hyper{key} is equivalent (in the sense of
{\cf eqv?}; see section~\ref{eqv?}) to a \hyper{datum}, then the
expressions in the corresponding \hyper{clause} are evaluated from left
to right and the result(s) of the last expression in the \hyper{clause} is(are)
returned as the result(s) of the {\cf case} expression. If the result of
evaluating \hyper{key} is different from every \hyper{datum}, then if
there is an else clause its expressions are evaluated and the
result(s) of the last is(are) the result(s) of the {\cf case} expression;
otherwise the result of the {\cf case} expression is unspecified.
\begin{scheme}
(case (* 2 3)
((2 3 5 7) 'prime)
((1 4 6 8 9) 'composite)) \ev composite
(case (car '(c d))
((a) 'a)
((b) 'b)) \ev \unspecified
(case (car '(c d))
((a e i o u) 'vowel)
((w y) 'semivowel)
(else 'consonant)) \ev consonant%
\end{scheme}
\end{entry}
\begin{entry}{%
\proto{and}{ \hyperi{test} \dotsfoo}{library \exprtype}}
The \hyper{test} expressions are evaluated from left to right, and the
value of the first expression that evaluates to a false value (see
section~\ref{booleansection}) is returned. Any remaining expressions
are not evaluated. If all the expressions evaluate to true values, the
value of the last expression is returned. If there are no expressions
then \schtrue{} is returned.
\begin{scheme}
(and (= 2 2) (> 2 1)) \ev \schtrue
(and (= 2 2) (< 2 1)) \ev \schfalse
(and 1 2 'c '(f g)) \ev (f g)
(and) \ev \schtrue%
\end{scheme}
\end{entry}
\begin{entry}{%
\proto{or}{ \hyperi{test} \dotsfoo}{library \exprtype}}
The \hyper{test} expressions are evaluated from left to right, and the value of the
first expression that evaluates to a true value (see
section~\ref{booleansection}) is returned. Any remaining expressions
are not evaluated. If all expressions evaluate to false values, the
value of the last expression is returned. If there are no
expressions then \schfalse{} is returned.
\begin{scheme}
(or (= 2 2) (> 2 1)) \ev \schtrue
(or (= 2 2) (< 2 1)) \ev \schtrue
(or \schfalse \schfalse \schfalse) \ev \schfalse
(or (memq 'b '(a b c))
(/ 3 0)) \ev (b c)%
\end{scheme}
\end{entry}
\subsection{Binding constructs}
The three binding constructs {\cf let}, {\cf let*}, and {\cf letrec}
give Scheme a block structure, like Algol 60. The syntax of the three
constructs is identical, but they differ in the regions\index{region} they establish
for their variable bindings. In a {\cf let} expression, the initial
values are computed before any of the variables become bound; in a
{\cf let*} expression, the bindings and evaluations are performed
sequentially; while in a {\cf letrec} expression, all the bindings are in
effect while their initial values are being computed, thus allowing
mutually recursive definitions.
\begin{entry}{%
\proto{let}{ \hyper{bindings} \hyper{body}}{library \exprtype}}
\syntax
\hyper{Bindings} should have the form
\begin{scheme}
((\hyperi{variable} \hyperi{init}) \dotsfoo)\rm,%
\end{scheme}
where each \hyper{init} is an expression, and \hyper{body} should be a
sequence of one or more expressions. It is
an error for a \hyper{variable} to appear more than once in the list of variables
being bound.
\semantics
The \hyper{init}s are evaluated in the current environment (in some
unspecified order), the \hyper{variable}s are bound to fresh locations
holding the results, the \hyper{body} is evaluated in the extended
environment, and the value(s) of the last expression of \hyper{body}
is(are) returned. Each binding of a \hyper{variable} has \hyper{body} as its
region.\index{region}
\begin{scheme}
(let ((x 2) (y 3))
(* x y)) \ev 6
(let ((x 2) (y 3))
(let ((x 7)
(z (+ x y)))
(* z x))) \ev 35%
\end{scheme}
See also named {\cf let}, section \ref{namedlet}.
\end{entry}
\begin{entry}{%
\proto{let*}{ \hyper{bindings} \hyper{body}}{library \exprtype}}\nobreak
\nobreak
\syntax
\hyper{Bindings} should have the form
\begin{scheme}
((\hyperi{variable} \hyperi{init}) \dotsfoo)\rm,%
\end{scheme}
and \hyper{body} should be a sequence of
one or more expressions.
\semantics
{\cf Let*} is similar to {\cf let}, but the bindings are performed
sequentially from left to right, and the region\index{region} of a binding indicated
by {\cf(\hyper{variable} \hyper{init})} is that part of the {\cf let*}
expression to the right of the binding. Thus the second binding is done
in an environment in which the first binding is visible, and so on.
\begin{scheme}
(let ((x 2) (y 3))
(let* ((x 7)
(z (+ x y)))
(* z x))) \ev 70%
\end{scheme}
\end{entry}
\begin{entry}{%
\proto{letrec}{ \hyper{bindings} \hyper{body}}{library \exprtype}}
\syntax
\hyper{Bindings} should have the form
\begin{scheme}
((\hyperi{variable} \hyperi{init}) \dotsfoo)\rm,%
\end{scheme}
and \hyper{body} should be a sequence of
one or more expressions. It is an error for a \hyper{variable} to appear more
than once in the list of variables being bound.
\semantics
The \hyper{variable}s are bound to fresh locations holding undefined
values, the \hyper{init}s are evaluated in the resulting environment (in
some unspecified order), each \hyper{variable} is assigned to the result
of the corresponding \hyper{init}, the \hyper{body} is evaluated in the
resulting environment, and the value(s) of the last expression in
\hyper{body} is(are) returned. Each binding of a \hyper{variable} has the
entire {\cf letrec} expression as its region\index{region}, making it possible to
define mutually recursive procedures.
\begin{scheme}
%(letrec ((x 2) (y 3))
% (letrec ((foo (lambda (z) (+ x y z))) (x 7))
% (foo 4))) \ev 14
%
(letrec ((even?
(lambda (n)
(if (zero? n)
\schtrue
(odd? (- n 1)))))
(odd?
(lambda (n)
(if (zero? n)
\schfalse
(even? (- n 1))))))
(even? 88))
\ev \schtrue%
\end{scheme}
One restriction on {\cf letrec} is very important: it must be possible
to evaluate each \hyper{init} without assigning or referring to the value of any
\hyper{variable}. If this restriction is violated, then it is an error. The
restriction is necessary because Scheme passes arguments by value rather than by
name. In the most common uses of {\cf letrec}, all the \hyper{init}s are
\lambdaexp{}s and the restriction is satisfied automatically.
% \todo{use or uses? --- Jinx.}
\end{entry}
\subsection{Sequencing}\unsection
\begin{entry}{%
\proto{begin}{ \hyperi{expression} \hyperii{expression} \dotsfoo}{library \exprtype}}
The \hyper{expression}s are evaluated sequentially from left to right,
and the value(s) of the last \hyper{expression} is(are) returned. This
expression type is used to sequence side effects such as input and
output.
\begin{scheme}
(define x 0)
(begin (set! x 5)
(+ x 1)) \ev 6
(begin (display "4 plus 1 equals ")
(display (+ 4 1))) \ev \unspecified
\>{\em and prints} 4 plus 1 equals 5%
\end{scheme}
\end{entry}
\subsection{Iteration}%\unsection
\noindent%
\pproto{(do ((\hyperi{variable} \hyperi{init} \hyperi{step})}{library \exprtype}
\mainschindex{do}{\tt\obeyspaces%
\dotsfoo)\\
(\hyper{test} \hyper{expression} \dotsfoo)\\
\hyper{command} \dotsfoo)}
{\cf Do} is an iteration construct. It specifies a set of variables to
be bound, how they are to be initialized at the start, and how they are
to be updated on each iteration. When a termination condition is met,
the loop exits after evaluating the \hyper{expression}s.
{\cf Do} expressions are evaluated as follows:
The \hyper{init} expressions are evaluated (in some unspecified order),
the \hyper{variable}s are bound to fresh locations, the results of the
\hyper{init} expressions are stored in the bindings of the
\hyper{variable}s, and then the iteration phase begins.
\vest Each iteration begins by evaluating \hyper{test}; if the result is
false (see section~\ref{booleansection}), then the \hyper{command}
expressions are evaluated in order for effect, the \hyper{step}
expressions are evaluated in some unspecified order, the
\hyper{variable}s are bound to fresh locations, the results of the
\hyper{step}s are stored in the bindings of the
\hyper{variable}s, and the next iteration begins.
\vest If \hyper{test} evaluates to a true value, then the
\hyper{expression}s are evaluated from left to right and the value(s) of
the last \hyper{expression} is(are) returned. If no \hyper{expression}s
are present, then the value of the {\cf do} expression is unspecified.
\vest The region\index{region} of the binding of a \hyper{variable}
consists of the entire {\cf do} expression except for the \hyper{init}s.
It is an error for a \hyper{variable} to appear more than once in the
list of {\cf do} variables.
\vest A \hyper{step} may be omitted, in which case the effect is the
same as if {\cf(\hyper{variable} \hyper{init} \hyper{variable})} had
been written instead of {\cf(\hyper{variable} \hyper{init})}.
\begin{scheme}
(do ((vec (make-vector 5))
(i 0 (+ i 1)))
((= i 5) vec)
(vector-set! vec i i)) \ev \#(0 1 2 3 4)
(let ((x '(1 3 5 7 9)))
(do ((x x (cdr x))
(sum 0 (+ sum (car x))))
((null? x) sum))) \ev 25%
\end{scheme}
%\end{entry}
\begin{entry}{%
\rproto{let}{ \hyper{variable} \hyper{bindings} \hyper{body}}{library \exprtype}}
\label{namedlet}
``Named {\cf let}'' is a variant on the syntax of \ide{let} which provides
a more general looping construct than {\cf do} and may also be used to express
recursions.
It has the same syntax and semantics as ordinary {\cf let}
except that \hyper{variable} is bound within \hyper{body} to a procedure
whose formal arguments are the bound variables and whose body is
\hyper{body}. Thus the execution of \hyper{body} may be repeated by
invoking the procedure named by \hyper{variable}.
% | <-- right margin
\begin{scheme}
(let loop ((numbers '(3 -2 1 6 -5))
(nonneg '())
(neg '()))
(cond ((null? numbers) (list nonneg neg))
((>= (car numbers) 0)
(loop (cdr numbers)
(cons (car numbers) nonneg)
neg))
((< (car numbers) 0)
(loop (cdr numbers)
nonneg
(cons (car numbers) neg))))) %
\lev ((6 1 3) (-5 -2))%
\end{scheme}
\end{entry}
\subsection{Delayed evaluation}\unsection
\begin{entry}{%
\proto{delay}{ \hyper{expression}}{library \exprtype}}
\todo{Fix.}
The {\cf delay} construct is used together with the procedure \ide{force} to
implement \defining{lazy evaluation} or \defining{call by need}.
{\tt(delay~\hyper{expression})} returns an object called a
\defining{promise} which at some point in the future may be asked (by
the {\cf force} procedure) \todo{Bartley's white lie; OK?} to evaluate
\hyper{expression}, and deliver the resulting value.
The effect of \hyper{expression} returning multiple values
is unspecified.
See the description of {\cf force} (section~\ref{force}) for a
more complete description of {\cf delay}.
\end{entry}
\subsection{Quasiquotation}\unsection
\label{quasiquotesection}
\begin{entry}{%
\proto{quasiquote}{ \hyper{qq template}}{\exprtype} \nopagebreak
\pproto{\backquote\hyper{qq template}}{\exprtype}}
``Backquote'' or ``quasiquote''\index{backquote} expressions are useful
for constructing a list or vector structure when most but not all of the
desired structure is known in advance. If no
commas\index{comma} appear within the \hyper{qq template}, the result of
evaluating
\backquote\hyper{qq template} is equivalent to the result of evaluating
\singlequote\hyper{qq template}. If a comma\mainschindex{,} appears within the
\hyper{qq template}, however, the expression following the comma is
evaluated (``unquoted'') and its result is inserted into the structure
instead of the comma and the expression. If a comma appears followed
immediately by an at-sign (\atsign),\mainschindex{,@} then the following
expression must evaluate to a list; the opening and closing parentheses
of the list are then ``stripped away'' and the elements of the list are
inserted in place of the comma at-sign expression sequence. A comma
at-sign should only appear within a list or vector \hyper{qq template}.
% struck: "(in the sense of {\cf equal?})" after "equivalent"
\begin{scheme}
`(list ,(+ 1 2) 4) \ev (list 3 4)
(let ((name 'a)) `(list ,name ',name)) %
\lev (list a (quote a))
`(a ,(+ 1 2) ,@(map abs '(4 -5 6)) b) %
\lev (a 3 4 5 6 b)
`(({\cf foo} ,(- 10 3)) ,@(cdr '(c)) . ,(car '(cons))) %
\lev ((foo 7) . cons)
`\#(10 5 ,(sqrt 4) ,@(map sqrt '(16 9)) 8) %
\lev \#(10 5 2 4 3 8)%
\end{scheme}
Quasiquote forms may be nested. Substitutions are made only for
unquoted components appearing at the same nesting level
as the outermost backquote. The nesting level increases by one inside
each successive quasiquotation, and decreases by one inside each
unquotation.
\begin{scheme}
`(a `(b ,(+ 1 2) ,(foo ,(+ 1 3) d) e) f) %
\lev (a `(b ,(+ 1 2) ,(foo 4 d) e) f)
(let ((name1 'x)
(name2 'y))
`(a `(b ,,name1 ,',name2 d) e)) %
\lev (a `(b ,x ,'y d) e)%
\end{scheme}
The two notations
\backquote\hyper{qq template} and {\tt (quasiquote \hyper{qq template})}
are identical in all respects.
{\cf,\hyper{expression}} is identical to {\cf (unquote \hyper{expression})},
and
{\cf,@\hyper{expression}} is identical to {\cf (unquote-splicing \hyper{expression})}.
The external syntax generated by \ide{write} for two-element lists whose
car is one of these symbols may vary between implementations.
\mainschindex{`}
\begin{scheme}
(quasiquote (list (unquote (+ 1 2)) 4)) %
\lev (list 3 4)
'(quasiquote (list (unquote (+ 1 2)) 4)) %
\lev `(list ,(+ 1 2) 4)
{\em{}i.e.,} (quasiquote (list (unquote (+ 1 2)) 4))%
\end{scheme}
Unpredictable behavior can result if any of the symbols
\ide{quasiquote}, \ide{unquote}, or \ide{unquote-splicing} appear in
positions within a \hyper{qq template} otherwise than as described above.
\end{entry}
\section{Macros}
\label{macrosection}
Scheme programs can define and use new derived expression types,
called {\em macros}.\mainindex{macro}
Program-defined expression types have the syntax
\begin{scheme}
(\hyper{keyword} {\hyper{datum}} ...)%
\end{scheme}%
where \hyper{keyword} is an identifier that uniquely determines the
expression type. This identifier is called the {\em syntactic
keyword}\index{syntactic keyword}, or simply {\em
keyword}\index{keyword}, of the macro\index{macro keyword}. The
number of the \hyper{datum}s, and their syntax, depends on the
expression type.
Each instance of a macro is called a {\em use}\index{macro use}
of the macro.
The set of rules that specifies
how a use of a macro is transcribed into a more primitive expression
is called the {\em transformer}\index{macro transformer}
of the macro.
The macro definition facility consists of two parts:
\begin{itemize}
\item A set of expressions used to establish that certain identifiers
are macro keywords, associate them with macro transformers, and control
the scope within which a macro is defined, and
\item a pattern language for specifying macro transformers.
\end{itemize}
The syntactic keyword of a macro may shadow variable bindings, and local
variable bindings may shadow keyword bindings. \index{keyword} All macros
defined using the pattern language are ``hygienic'' and ``referentially
transparent'' and thus preserve Scheme's lexical scoping~\cite{Kohlbecker86,
hygienic,Bawden88,macrosthatwork,syntacticabstraction}:
\mainindex{hygienic}
\mainindex{referentially transparent}
\begin{itemize}
\item If a macro transformer inserts a binding for an identifier
(variable or keyword), the identifier will in effect be renamed
throughout its scope to avoid conflicts with other identifiers.
Note that a \ide{define} at top level may or may not introduce a binding;
see section~\ref{defines}.
\item If a macro transformer inserts a free reference to an
identifier, the reference refers to the binding that was visible
where the transformer was specified, regardless of any local
bindings that may surround the use of the macro.
\end{itemize}
%The low-level facility permits non-hygienic macros to be written,
%and may be used to implement the high-level pattern language.
% The fourth section describes some features that would make the
% low-level macro facility easier to use directly.
\subsection{Binding constructs for syntactic keywords}
\label{bindsyntax}
{\cf Let-syntax} and {\cf letrec-syntax} are
analogous to {\cf let} and {\cf letrec}, but they bind
syntactic keywords to macro transformers instead of binding variables
to locations that contain values. Syntactic keywords may also be
bound at top level; see section~\ref{define-syntax}.
\begin{entry}{%
\proto{let-syntax}{ \hyper{bindings} \hyper{body}}{\exprtype}}
\syntax
\hyper{Bindings} should have the form
\begin{scheme}
((\hyper{keyword} \hyper{transformer spec}) \dotsfoo)%
\end{scheme}
Each \hyper{keyword} is an identifier,
each \hyper{transformer spec} is an instance of {\cf syntax-rules}, and
\hyper{body} should be a sequence of one or more expressions. It is an error
for a \hyper{keyword} to appear more than once in the list of keywords
being bound.
\semantics
The \hyper{body} is expanded in the syntactic environment
obtained by extending the syntactic environment of the
{\cf let-syntax} expression with macros whose keywords are
the \hyper{keyword}s, bound to the specified transformers.
Each binding of a \hyper{keyword} has \hyper{body} as its region.
\begin{scheme}
(let-syntax ((when (syntax-rules ()
((when test stmt1 stmt2 ...)
(if test
(begin stmt1
stmt2 ...))))))
(let ((if \schtrue))
(when if (set! if 'now))
if)) \ev now
(let ((x 'outer))
(let-syntax ((m (syntax-rules () ((m) x))))
(let ((x 'inner))
(m)))) \ev outer%
\end{scheme}
\end{entry}
\begin{entry}{%
\proto{letrec-syntax}{ \hyper{bindings} \hyper{body}}{\exprtype}}
\syntax
Same as for {\cf let-syntax}.
\semantics
The \hyper{body} is expanded in the syntactic environment obtained by
extending the syntactic environment of the {\cf letrec-syntax}
expression with macros whose keywords are the
\hyper{keyword}s, bound to the specified transformers.
Each binding of a \hyper{keyword} has the \hyper{bindings}
as well as the \hyper{body} within its region,
so the transformers can
transcribe expressions into uses of the macros
introduced by the {\cf letrec-syntax} expression.
\begin{scheme}
(letrec-syntax
((my-or (syntax-rules ()
((my-or) \schfalse)
((my-or e) e)
((my-or e1 e2 ...)
(let ((temp e1))
(if temp
temp
(my-or e2 ...)))))))
(let ((x \schfalse)
(y 7)
(temp 8)
(let odd?)
(if even?))
(my-or x
(let temp)
(if y)
y))) \ev 7%
\end{scheme}
\end{entry}
\subsection{Pattern language}
\label{patternlanguage}
A \hyper{transformer spec} has the following form:
\begin{entry}{%
\proto{syntax-rules}{ \hyper{literals} \hyper{syntax rule} \dotsfoo}{}}
\syntax
\hyper{Literals} is a list of identifiers and each \hyper{syntax rule}
should be of the form
\begin{scheme}
(\hyper{pattern} \hyper{template})%
\end{scheme}
The \hyper{pattern} in a \hyper{syntax rule} is a list \hyper{pattern}
that begins with the keyword for the macro.
A \hyper{pattern} is either an identifier, a constant, or one of the
following
\begin{scheme}
(\hyper{pattern} \ldots)
(\hyper{pattern} \hyper{pattern} \ldots . \hyper{pattern})
(\hyper{pattern} \ldots \hyper{pattern} \hyper{ellipsis})
\#(\hyper{pattern} \ldots)
\#(\hyper{pattern} \ldots \hyper{pattern} \hyper{ellipsis})%
\end{scheme}
and a template is either an identifier, a constant, or one of the following
\begin{scheme}
(\hyper{element} \ldots)
(\hyper{element} \hyper{element} \ldots . \hyper{template})
\#(\hyper{element} \ldots)%
\end{scheme}
where an \hyper{element} is a \hyper{template} optionally
followed by an \hyper{ellipsis} and
an \hyper{ellipsis} is the identifier ``{\cf ...}'' (which cannot be used as
an identifier in either a template or a pattern).\schindex{...}
\semantics An instance of {\cf syntax-rules} produces a new macro
transformer by specifying a sequence of hygienic rewrite rules. A use
of a macro whose keyword is associated with a transformer specified by
{\cf syntax-rules} is matched against the patterns contained in the
\hyper{syntax rule}s, beginning with the leftmost \hyper{syntax rule}.
When a match is found, the macro use is transcribed hygienically
according to the template.
An identifier that appears in the pattern of a \hyper{syntax rule} is
a {\em pattern variable}, unless it is the keyword that begins the pattern,
is listed in \hyper{literals}, or is the identifier ``{\cf ...}''.
Pattern variables match arbitrary input elements and
are used to refer to elements of the input in the template. It is an
error for the same pattern variable to appear more than once in a
\hyper{pattern}.
The keyword at the beginning of the pattern in a
\hyper{syntax rule} is not involved in the matching and
is not considered a pattern variable or literal identifier.
\begin{rationale}
The scope of the keyword is determined by the expression or syntax
definition that binds it to the associated macro transformer.
If the keyword were a pattern variable or literal
identifier, then
the template that follows the pattern would be within its scope
regardless of whether the keyword were bound by {\cf let-syntax}
or by {\cf letrec-syntax}.
\end{rationale}
Identifiers that appear in \hyper{literals} are interpreted as literal
identifiers to be matched against corresponding subforms of the input.
A subform
in the input matches a literal identifier if and only if it is an
identifier
and either both its occurrence in the macro expression and its
occurrence in the macro definition have the same lexical binding, or
the two identifiers are equal and both have no lexical binding.
% [Bill Rozas suggested the term "noise word" for these literal
% identifiers, but in their most interesting uses, such as a setf
% macro, they aren't noise words at all. -- Will]
A subpattern followed by {\cf ...} can match zero or more elements of the
input. It is an error for {\cf ...} to appear in \hyper{literals}.
Within a pattern the identifier {\cf ...} must follow the last element of
a nonempty sequence of subpatterns.
More formally, an input form $F$ matches a pattern $P$ if and only if:
\begin{itemize}
\item $P$ is a non-literal identifier; or
\item $P$ is a literal identifier and $F$ is an identifier with the same
binding; or
\item $P$ is a list {\cf ($P_1$ $\dots$ $P_n$)} and $F$ is a
list of $n$
forms that match $P_1$ through $P_n$, respectively; or
\item $P$ is an improper list
{\cf ($P_1$ $P_2$ $\dots$ $P_n$ . $P_{n+1}$)}
and $F$ is a list or
improper list of $n$ or more forms that match $P_1$ through $P_n$,
respectively, and whose $n$th ``cdr'' matches $P_{n+1}$; or
\item $P$ is of the form
{\cf ($P_1$ $\dots$ $P_n$ $P_{n+1}$ \meta{ellipsis})}
where \meta{ellipsis} is the identifier {\cf ...}
and $F$ is
a proper list of at least $n$ forms, the first $n$ of which match
$P_1$ through $P_n$, respectively, and each remaining element of $F$
matches $P_{n+1}$; or
\item $P$ is a vector of the form {\cf \#($P_1$ $\dots$ $P_n$)}
and $F$ is a vector
of $n$ forms that match $P_1$ through $P_n$; or
\item $P$ is of the form
{\cf \#($P_1$ $\dots$ $P_n$ $P_{n+1}$ \meta{ellipsis})}
where \meta{ellipsis} is the identifier {\cf ...}
and $F$ is a vector of $n$
or more forms the first $n$ of which match
$P_1$ through $P_n$, respectively, and each remaining element of $F$
matches $P_{n+1}$; or
\item $P$ is a datum and $F$ is equal to $P$ in the sense of
the {\cf equal?} procedure.
\end{itemize}
It is an error to use a macro keyword, within the scope of its
binding, in an expression that does not match any of the patterns.
When a macro use is transcribed according to the template of the
matching \hyper{syntax rule}, pattern variables that occur in the
template are replaced by the subforms they match in the input.
Pattern variables that occur in subpatterns followed by one or more
instances of the identifier
{\cf ...} are allowed only in subtemplates that are
followed by as many instances of {\cf ...}.
They are replaced in the
output by all of the subforms they match in the input, distributed as
indicated. It is an error if the output cannot be built up as
specified.
%%% This description of output construction is very vague. It should
%%% probably be formalized, but that is not easy...
Identifiers that appear in the template but are not pattern variables
or the identifier
{\cf ...} are inserted into the output as literal identifiers. If a
literal identifier is inserted as a free identifier then it refers to the
binding of that identifier within whose scope the instance of
{\cf syntax-rules} appears.
If a literal identifier is inserted as a bound identifier then it is
in effect renamed to prevent inadvertent captures of free identifiers.
As an example, if \ide{let} and \ide{cond} are defined as in
section~\ref{derivedsection} then they are hygienic (as required) and
the following is not an error.
\begin{scheme}
(let ((=> \schfalse))
(cond (\schtrue => 'ok))) \ev ok%
\end{scheme}
The macro transformer for {\cf cond} recognizes {\cf =>}
as a local variable, and hence an expression, and not as the
top-level identifier {\cf =>}, which the macro transformer treats
as a syntactic keyword. Thus the example expands into
\begin{scheme}
(let ((=> \schfalse))
(if \schtrue (begin => 'ok)))%
\end{scheme}
instead of
\begin{scheme}
(let ((=> \schfalse))
(let ((temp \schtrue))
(if temp ('ok temp))))%
\end{scheme}
which would result in an invalid procedure call.
\end{entry}
|