1
0
Fork 0
cl-sites/novaspec.org/cl/v__dash.html

312 lines
6 KiB
HTML
Raw Normal View History

2025-02-05 18:52:26 +01:00
<!DOCTYPE HTML>
<HTML LANG="en-us"
><HEAD
><TITLE
>/, //, /// | Common Lisp Nova Spec</TITLE
><META CHARSET="US-ASCII"
><LINK REL="canonical" HREF="v__dash.html"
><LINK REL="next" HREF="f_lisp-implementation-type.html" TYPE="text/html" TITLE="lisp-implementation-type, lisp-implementation-version"
><LINK REL="prev" HREF="v__star.html" TYPE="text/html" TITLE="*, **, ***"
><LINK REL="up" HREF="25_2_Environment_Dictionary.html" TYPE="text/html" TITLE="25.2 Environment Dictionary"
><LINK REL="start" HREF="index.html" TYPE="text/html" TITLE="Common Lisp Nova Spec"
><META NAME="VIEWPORT" CONTENT="width=device-width, initial-scale=1.0"
><LINK REL="STYLESHEET" HREF="dpans.css%3F3909942064.css"
><SCRIPT SRC="dpans.js%3F3909942064"
></SCRIPT
><SCRIPT SRC="apropos.js%3F3909942064"
></SCRIPT
></HEAD
><BODY
><DIV
><DIV CLASS="topnav"
><DIV CLASS="breadcrumb"
><SPAN CLASS="breadcrumb-item"
><A HREF="index.html"
>Common Lisp Nova Spec</A
></SPAN
> <SPAN CLASS="breadcrumb-item"
>&#8594; <A HREF="25_Environment.html"
>25. Environment</A
></SPAN
> <SPAN CLASS="breadcrumb-item"
>&#8594; <A HREF="25_2_Environment_Dictionary.html"
>25.2 Environment Dictionary</A
></SPAN
> <SPAN CLASS="breadcrumb-item"
>&#8594; <A HREF="v__dash.html"
>/, //, ///</A
></SPAN
></DIV
><DIV CLASS="apropos"
><DIV CLASS="apropos-io"
><A HREF="v__star.html" CLASS="prev"
>&#8592;</A
><SPAN ID="apropos-label"
>Apropos </SPAN
><INPUT ID="apropos" AUTOFOCUS="AUTOFOCUS" PLACEHOLDER="Type here to search" ONINPUT="aproposInput(this);" ONKEYUP="aproposKeyup(event);" ONCHANGE="aproposChange(this);" ONFOCUS="aproposFocus(this);" ONFOCUSOUT="aproposFocusout(this);"
><A HREF="f_lisp-implementation-type.html" CLASS="next"
>&#8594;</A
></DIV
><DIV ID="apropos-res"
></DIV
></DIV
></DIV
><DIV CLASS="matter"
><DIV CLASS="com"
><DIV CLASS="begincom"
><HR
><TABLE WIDTH="100%" CELLSPACING="0" CELLPADDING="0"
><TR
><TD ALIGN="LEFT" VALIGN="BASELINE" WIDTH="100%" CLASS="name"
><SPAN CLASS="idx" DATA-KIND="idxref" DATA-TERM="/, //, ///"
></SPAN
><B
>/, //, ///</B
></TD
><TD ALIGN="RIGHT" VALIGN="BASELINE" WIDTH="0" NOWRAP="NOWRAP" CLASS="ftype"
><I
>Variable</I
></TD
></TR
></TABLE
><HR
></DIV
><UL CLASS="subtoc"
></UL
><DL
><DT
><B
>Value Type</B
></DT
><DD
><P CLASS="j"
>a <A HREF="26_1_Glossary.html#proper_list"
><EM CLASS="term"
>proper list</EM
></A
>.</P
></DD
><DT
><B
>Initial Value</B
></DT
><DD
><P CLASS="j"
><A HREF="26_1_Glossary.html#implementation-dependent"
><EM CLASS="term"
>implementation-dependent</EM
></A
>.</P
></DD
><DT
><B
>Description</B
></DT
><DD
><P CLASS="j"
>The <A HREF="26_1_Glossary.html#variable"
><EM CLASS="term"
>variables</EM
></A
> <A HREF="v__dash.html" CLASS="varref"
><B
>/</B
></A
>, <A HREF="v__dash.html" CLASS="misc"
><B
>//</B
></A
>, and <A HREF="v__dash.html" CLASS="misc"
><B
>///</B
></A
> are maintained by the <A HREF="26_1_Glossary.html#Lisp_read-eval-print_loop"
><EM CLASS="term"
>Lisp read-eval-print loop</EM
></A
> to save the values of results that were printed at the end of the loop. </P
><P CLASS="j"
>The <A HREF="26_1_Glossary.html#value"
><EM CLASS="term"
>value</EM
></A
> of <SPAN CLASS="misc"
><B
>/</B
></SPAN
> is a <A HREF="26_1_Glossary.html#list"
><EM CLASS="term"
>list</EM
></A
> of the most recent <A HREF="26_1_Glossary.html#value"
><EM CLASS="term"
>values</EM
></A
> that were printed, the <A HREF="26_1_Glossary.html#value"
><EM CLASS="term"
>value</EM
></A
> of <A HREF="v__dash.html" CLASS="misc"
><B
>//</B
></A
> is the previous value of <SPAN CLASS="misc"
><B
>/</B
></SPAN
>, and the <A HREF="26_1_Glossary.html#value"
><EM CLASS="term"
>value</EM
></A
> of <A HREF="v__dash.html" CLASS="misc"
><B
>///</B
></A
> is the previous value of <A HREF="v__dash.html" CLASS="misc"
><B
>//</B
></A
>. </P
><P CLASS="j"
>The <A HREF="26_1_Glossary.html#value"
><EM CLASS="term"
>values</EM
></A
> of <SPAN CLASS="misc"
><B
>/</B
></SPAN
>, <A HREF="v__dash.html" CLASS="misc"
><B
>//</B
></A
>, and <A HREF="v__dash.html" CLASS="misc"
><B
>///</B
></A
> are updated immediately prior to printing the <A HREF="26_1_Glossary.html#return_value"
><EM CLASS="term"
>return value</EM
></A
> of a top-level <A HREF="26_1_Glossary.html#form"
><EM CLASS="term"
>form</EM
></A
> by the <A HREF="26_1_Glossary.html#Lisp_read-eval-print_loop"
><EM CLASS="term"
>Lisp read-eval-print loop</EM
></A
>. If the <A HREF="26_1_Glossary.html#evaluation"
><EM CLASS="term"
>evaluation</EM
></A
> of such a <A HREF="26_1_Glossary.html#form"
><EM CLASS="term"
>form</EM
></A
> is aborted prior to its normal return, the values of <SPAN CLASS="misc"
><B
>/</B
></SPAN
>, <A HREF="v__dash.html" CLASS="misc"
><B
>//</B
></A
>, and <A HREF="v__dash.html" CLASS="misc"
><B
>///</B
></A
> are not updated.</P
></DD
><DT
><B
>Examples</B
></DT
><DD
><PRE CLASS="screen"
>(floor 22 7) <SPAN CLASS="cmsy"
><SPAN CLASS="arrow"
>&#8594;</SPAN
></SPAN
> 3, 1
(+ (* (car /) 7) (cadr /)) <SPAN CLASS="cmsy"
><SPAN CLASS="arrow"
>&#8594;</SPAN
></SPAN
> 22</PRE
></DD
><DT
><B
>Affected By</B
></DT
><DD
><P CLASS="j"
><A HREF="26_1_Glossary.html#Lisp_read-eval-print_loop"
><EM CLASS="term"
>Lisp read-eval-print loop</EM
></A
>.</P
></DD
><DT
><B
>See Also</B
></DT
><DD
><P CLASS="j"
><A HREF="f__minus.html" CLASS="funref"
><B
>-</B
></A
> (<A HREF="26_1_Glossary.html#variable"
><EM CLASS="term"
>variable</EM
></A
>), <A HREF="f__plus.html" CLASS="funref"
><B
>+</B
></A
> (<A HREF="26_1_Glossary.html#variable"
><EM CLASS="term"
>variable</EM
></A
>), <A HREF="f__star.html" CLASS="funref"
><B
>*</B
></A
> (<A HREF="26_1_Glossary.html#variable"
><EM CLASS="term"
>variable</EM
></A
>), <A HREF="25_1_The_External_Environment.html#sec_25_1_1" CLASS="secref"
><SPAN CLASS="cmr"
>Section</SPAN
> <SPAN CLASS="cmr"
>25.1.1</SPAN
> <SPAN CLASS="cmr"
>(Top</SPAN
> <SPAN CLASS="cmr"
>level</SPAN
> <SPAN CLASS="cmr"
>loop)</SPAN
></A
></P
></DD
></DL
></DIV
></DIV
><DIV CLASS="footer"
><DIV CLASS="btmnav"
><A HREF="v__star.html" CLASS="prev"
>&#8592;</A
><A HREF="f_lisp-implementation-type.html" CLASS="next"
>&#8594;</A
></DIV
><DIV CLASS="trail"
>Conversion to HTML copyright 2023 by Gilbert Baumann</DIV
></DIV
></DIV
><SCRIPT
>domReady();</SCRIPT
></BODY
></HTML
>