102 lines
8 KiB
HTML
102 lines
8 KiB
HTML
<!-- Common Lisp HyperSpec (TM), version 7.0 generated by Kent M. Pitman on Mon, 11-Apr-2005 2:31am EDT -->
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE>CLHS: Macro DOTIMES</TITLE>
|
|
<LINK HREF="../Data/clhs.css" REL="stylesheet" TYPE="text/css" />
|
|
<META HTTP-EQUIV="Author" CONTENT="Kent M. Pitman">
|
|
<META HTTP-EQUIV="Organization" CONTENT="LispWorks Ltd.">
|
|
<LINK REL=TOP HREF="../Front/index.htm">
|
|
<LINK REL=COPYRIGHT HREF="../Front/Help.htm#Legal">
|
|
<LINK REL=DISCLAIMER HREF="../Front/Help.htm#Disclaimer">
|
|
<LINK REL=PREV HREF="m_do_do.htm">
|
|
<LINK REL=UP HREF="c_iterat.htm">
|
|
<LINK REL=NEXT HREF="m_dolist.htm">
|
|
</HEAD>
|
|
<BODY>
|
|
<H1><A REV=MADE HREF="http://www.lispworks.com/"><IMG WIDTH=80 HEIGHT=65 ALT="[LISPWORKS]" SRC="../Graphics/LWSmall.gif" ALIGN=Bottom></A><A REL=TOP HREF="../Front/index.htm"><IMG WIDTH=237 HEIGHT=65 ALT="[Common Lisp HyperSpec (TM)]" SRC="../Graphics/CLHS_Sm.gif" ALIGN=Bottom></A> <A REL=PREV HREF="m_do_do.htm"><IMG WIDTH=40 HEIGHT=40 ALT="[Previous]" SRC="../Graphics/Prev.gif" ALIGN=Bottom></A><A REL=UP HREF="c_iterat.htm"><IMG WIDTH=40 HEIGHT=40 ALT="[Up]" SRC="../Graphics/Up.gif" ALIGN=Bottom></A><A REL=NEXT HREF="m_dolist.htm"><IMG WIDTH=40 HEIGHT=40 ALT="[Next]" SRC="../Graphics/Next.gif" ALIGN=Bottom></A></H1>
|
|
|
|
<HR>
|
|
|
|
<A NAME="dotimes"><I>Macro</I> <B>DOTIMES</B></A> <P>
|
|
<P>
|
|
<P><B>Syntax:</B><P>
|
|
<P>
|
|
|
|
<B>dotimes</B> <I>(var count-form [result-form]) <I>declaration</I><B>*</B> {tag | statement}*</I><P> => <I><I>result</I><B>*</B></I><P>
|
|
<P>
|
|
<P><B>Arguments and Values:</B><P>
|
|
<P>
|
|
<I>var</I>---a <A REL=DEFINITION HREF="26_glo_s.htm#symbol"><I>symbol</I></A>. <P>
|
|
<I>count-form</I>---a <A REL=DEFINITION HREF="26_glo_f.htm#form"><I>form</I></A>. <P>
|
|
<I>result-form</I>---a <A REL=DEFINITION HREF="26_glo_f.htm#form"><I>form</I></A>. <P>
|
|
<I>declaration</I>---a <A REL=DEFINITION HREF="s_declar.htm#declare"><B>declare</B></A> <A REL=DEFINITION HREF="26_glo_e.htm#expression"><I>expression</I></A>; not evaluated. <P>
|
|
<I>tag</I>---a <A REL=DEFINITION HREF="26_glo_g.htm#go_tag"><I>go tag</I></A>; not evaluated. <P>
|
|
<I>statement</I>---a <A REL=DEFINITION HREF="26_glo_c.htm#compound_form"><I>compound form</I></A>; evaluated as described below. <P>
|
|
<I>results</I>---if a <A REL=DEFINITION HREF="m_return.htm#return"><B>return</B></A> or <A REL=DEFINITION HREF="s_ret_fr.htm#return-from"><B>return-from</B></A> form is executed, the <A REL=DEFINITION HREF="26_glo_v.htm#value"><I>values</I></A> passed from that <A REL=DEFINITION HREF="26_glo_f.htm#form"><I>form</I></A>; otherwise, the <A REL=DEFINITION HREF="26_glo_v.htm#value"><I>values</I></A> returned by the <I>result-form</I> or <A REL=DEFINITION HREF="a_nil.htm#nil"><B>nil</B></A> if there is no <I>result-form</I>. <P>
|
|
<P><B>Description:</B><P>
|
|
<P>
|
|
<A REL=DEFINITION HREF="#dotimes"><B>dotimes</B></A> iterates over a series of <A REL=DEFINITION HREF="26_glo_i.htm#integer"><I>integers</I></A>. <P>
|
|
<A REL=DEFINITION HREF="#dotimes"><B>dotimes</B></A> evaluates <I>count-form</I>, which should produce an <A REL=DEFINITION HREF="26_glo_i.htm#integer"><I>integer</I></A>. If <I>count-form</I> is zero or negative, the body is not executed. <A REL=DEFINITION HREF="#dotimes"><B>dotimes</B></A> then executes the body once for each <A REL=DEFINITION HREF="26_glo_i.htm#integer"><I>integer</I></A> from 0 up to but not including the value of <I>count-form</I>, in the order in which the <I>tags</I> and <I>statements</I> occur, with <I>var</I> bound to each <A REL=DEFINITION HREF="26_glo_i.htm#integer"><I>integer</I></A>. Then <I>result-form</I> is evaluated. At the time <I>result-form</I> is processed, <I>var</I> is bound to the number of times the body was executed. <I>Tags</I> label <I>statements</I>. <P>
|
|
An <A REL=DEFINITION HREF="26_glo_i.htm#implicit_block"><I>implicit block</I></A> named <A REL=DEFINITION HREF="a_nil.htm#nil"><B>nil</B></A> surrounds <A REL=DEFINITION HREF="#dotimes"><B>dotimes</B></A>. <A REL=DEFINITION HREF="m_return.htm#return"><B>return</B></A> may be used to terminate the loop immediately without performing any further iterations, returning zero or more <A REL=DEFINITION HREF="26_glo_v.htm#value"><I>values</I></A>. <P>
|
|
The body of the loop is an <A REL=DEFINITION HREF="26_glo_i.htm#implicit_tagbody"><I>implicit tagbody</I></A>; it may contain tags to serve as the targets of <A REL=DEFINITION HREF="s_go.htm#go"><B>go</B></A> statements. Declarations may appear before the body of the loop. <P>
|
|
The <A REL=DEFINITION HREF="26_glo_s.htm#scope"><I>scope</I></A> of the binding of <I>var</I> does not include the <I>count-form</I>, but the <I>result-form</I> is included. <P>
|
|
It is <A REL=DEFINITION HREF="26_glo_i.htm#implementation-dependent"><I>implementation-dependent</I></A> whether <A REL=DEFINITION HREF="#dotimes"><B>dotimes</B></A> <A REL=DEFINITION HREF="26_glo_e.htm#establish"><I>establishes</I></A> a new <A REL=DEFINITION HREF="26_glo_b.htm#binding"><I>binding</I></A> of <I>var</I> on each iteration or whether it <A REL=DEFINITION HREF="26_glo_e.htm#establish"><I>establishes</I></A> a binding for <I>var</I> once at the beginning and then <I>assigns</I> it on any subsequent iterations. <P>
|
|
<P><B>Examples:</B><P>
|
|
<P>
|
|
<PRE>
|
|
(dotimes (temp-one 10 temp-one)) => 10
|
|
(setq temp-two 0) => 0
|
|
(dotimes (temp-one 10 t) (incf temp-two)) => T
|
|
temp-two => 10
|
|
</PRE>
|
|
</TT> <P>
|
|
Here is an example of the use of <TT>dotimes</TT> in processing strings: <P>
|
|
<PRE>
|
|
;;; True if the specified subsequence of the string is a
|
|
;;; palindrome (reads the same forwards and backwards).
|
|
(defun palindromep (string <TT>&optional</TT>
|
|
(start 0)
|
|
(end (length string)))
|
|
(dotimes (k (floor (- end start) 2) t)
|
|
(unless (char-equal (char string (+ start k))
|
|
(char string (- end k 1)))
|
|
(return nil))))
|
|
(palindromep "Able was I ere I saw Elba") => T
|
|
(palindromep "A man, a plan, a canal--Panama!") => NIL
|
|
(remove-if-not #'alpha-char-p ;Remove punctuation.
|
|
"A man, a plan, a canal--Panama!")
|
|
=> "AmanaplanacanalPanama"
|
|
(palindromep
|
|
(remove-if-not #'alpha-char-p
|
|
"A man, a plan, a canal--Panama!")) => T
|
|
(palindromep
|
|
(remove-if-not
|
|
#'alpha-char-p
|
|
"Unremarkable was I ere I saw Elba Kramer, nu?")) => T
|
|
(palindromep
|
|
(remove-if-not
|
|
#'alpha-char-p
|
|
"A man, a plan, a cat, a ham, a yak,
|
|
a yam, a hat, a canal--Panama!")) => T
|
|
</PRE>
|
|
</TT> <P>
|
|
<P><B>Side Effects:</B> None.
|
|
<P>
|
|
<P><B>Affected By:</B> None.
|
|
<P>
|
|
<P><B>Exceptional Situations:</B> None.
|
|
<P>
|
|
<P><B>See Also:</B><P>
|
|
<P>
|
|
<A REL=DEFINITION HREF="m_do_do.htm#do"><B>do</B></A>, <A REL=DEFINITION HREF="m_dolist.htm#dolist"><B>dolist</B></A>, <A REL=DEFINITION HREF="s_tagbod.htm#tagbody"><B>tagbody</B></A> <P>
|
|
<P><B>Notes:</B><P>
|
|
<P>
|
|
<A REL=DEFINITION HREF="s_go.htm#go"><B>go</B></A> may be used within the body of <A REL=DEFINITION HREF="#dotimes"><B>dotimes</B></A> to transfer control to a statement labeled by a <I>tag</I>. <P>
|
|
<P>
|
|
<P><HR>The following <A REL=META HREF="../Front/X3J13Iss.htm">X3J13 cleanup issue</A>, <I>not part of the specification</I>, applies to this section:<P><UL><LI> <A REL=CHILD HREF="../Issues/iss097.htm">DECLS-AND-DOC</A><P></UL><HR>
|
|
|
|
<A REL=NAVIGATOR HREF="../Front/StartPts.htm"><IMG WIDTH=80 HEIGHT=40 ALT="[Starting Points]" SRC="../Graphics/StartPts.gif" ALIGN=Bottom></A><A REL=TOC HREF="../Front/Contents.htm"><IMG WIDTH=80 HEIGHT=40 ALT="[Contents]" SRC="../Graphics/Contents.gif" ALIGN=Bottom></A><A REL=INDEX HREF="../Front/X_Master.htm"><IMG WIDTH=80 HEIGHT=40 ALT="[Index]" SRC="../Graphics/Index.gif" ALIGN=Bottom></A><A REL=INDEX HREF="../Front/X_Symbol.htm"><IMG WIDTH=80 HEIGHT=40 ALT="[Symbols]" SRC="../Graphics/Symbols.gif" ALIGN=Bottom></A><A REL=GLOSSARY HREF="../Body/26_a.htm"><IMG WIDTH=80 HEIGHT=40 ALT="[Glossary]" SRC="../Graphics/Glossary.gif" ALIGN=Bottom></A><A HREF="../Front/X3J13Iss.htm"><IMG WIDTH=80 HEIGHT=40 ALT="[Issues]" SRC="../Graphics/Issues.gif" ALIGN=Bottom></A><BR>
|
|
|
|
<A REL=COPYRIGHT HREF="../Front/Help.htm#Legal"><I>Copyright 1996-2005, LispWorks Ltd. All rights reserved.</I></A><P>
|
|
</BODY>
|
|
</HTML>
|