1
0
Fork 0
cl-sites/HyperSpec-7-0/HyperSpec/Body/f_find_r.htm
2024-04-01 10:24:07 +02:00

75 lines
6.2 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: Function FIND-RESTART</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="f_comp_1.htm">
<LINK REL=UP HREF="c_condit.htm">
<LINK REL=NEXT HREF="f_invo_1.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="f_comp_1.htm"><IMG WIDTH=40 HEIGHT=40 ALT="[Previous]" SRC="../Graphics/Prev.gif" ALIGN=Bottom></A><A REL=UP HREF="c_condit.htm"><IMG WIDTH=40 HEIGHT=40 ALT="[Up]" SRC="../Graphics/Up.gif" ALIGN=Bottom></A><A REL=NEXT HREF="f_invo_1.htm"><IMG WIDTH=40 HEIGHT=40 ALT="[Next]" SRC="../Graphics/Next.gif" ALIGN=Bottom></A></H1>
<HR>
<A NAME="find-restart"><I>Function</I> <B>FIND-RESTART</B></A> <P>
<P><B>Syntax:</B><P>
<P>
<B>find-restart</B> <I>identifier <TT>&amp;optional</TT> condition</I><P>
restart <P>
<P><B>Arguments and Values:</B><P>
<P>
<I>identifier</I>---a <A REL=DEFINITION HREF="26_glo_n.htm#non-nil"><I>non-nil</I></A> <A REL=DEFINITION HREF="26_glo_s.htm#symbol"><I>symbol</I></A>, or a <A REL=DEFINITION HREF="26_glo_r.htm#restart"><I>restart</I></A>. <P>
<I>condition</I>---a <A REL=DEFINITION HREF="26_glo_c.htm#condition"><I>condition</I></A> <A REL=DEFINITION HREF="26_glo_o.htm#object"><I>object</I></A>, or <A REL=DEFINITION HREF="a_nil.htm#nil"><B>nil</B></A>. <P>
<I>restart</I>---a <A REL=DEFINITION HREF="26_glo_r.htm#restart"><I>restart</I></A> or <A REL=DEFINITION HREF="a_nil.htm#nil"><B>nil</B></A>. <P>
<P><B>Description:</B><P>
<P>
<A REL=DEFINITION HREF="#find-restart"><B>find-restart</B></A> searches for a particular <A REL=DEFINITION HREF="26_glo_r.htm#restart"><I>restart</I></A> in the current <A REL=DEFINITION HREF="26_glo_d.htm#dynamic_environment"><I>dynamic environment</I></A>. <P>
When <I>condition</I> is <A REL=DEFINITION HREF="26_glo_n.htm#non-nil"><I>non-nil</I></A>, only those <A REL=DEFINITION HREF="26_glo_r.htm#restart"><I>restarts</I></A> are considered that are either explicitly associated with that <I>condition</I>, or not associated with any <A REL=DEFINITION HREF="26_glo_c.htm#condition"><I>condition</I></A>; that is, the excluded <A REL=DEFINITION HREF="26_glo_r.htm#restart"><I>restarts</I></A> are those that are associated with a non-empty set of <A REL=DEFINITION HREF="26_glo_c.htm#condition"><I>conditions</I></A> of which the given <I>condition</I> is not an <A REL=DEFINITION HREF="26_glo_e.htm#element"><I>element</I></A>. If <I>condition</I> is <A REL=DEFINITION HREF="a_nil.htm#nil"><B>nil</B></A>, all <A REL=DEFINITION HREF="26_glo_r.htm#restart"><I>restarts</I></A> are considered. <P>
If <I>identifier</I> is a <A REL=DEFINITION HREF="26_glo_s.htm#symbol"><I>symbol</I></A>, then the innermost (most recently established) <A REL=DEFINITION HREF="26_glo_a.htm#applicable_restart"><I>applicable restart</I></A> with that <A REL=DEFINITION HREF="26_glo_n.htm#name"><I>name</I></A> is returned. <A REL=DEFINITION HREF="a_nil.htm#nil"><B>nil</B></A> is returned if no such restart is found. <P>
If <I>identifier</I> is a currently active restart, then it is returned. Otherwise, <A REL=DEFINITION HREF="a_nil.htm#nil"><B>nil</B></A> is returned. <P>
<P><B>Examples:</B><P>
<P>
<PRE>
(restart-case
(let ((r (find-restart 'my-restart)))
(format t &quot;~S is named ~S&quot; r (restart-name r)))
(my-restart () nil))
&gt;&gt; #&lt;RESTART 32307325&gt; is named MY-RESTART
=&gt; NIL
(find-restart 'my-restart)
=&gt; NIL
</PRE>
</TT> <P>
<P><B>Side Effects:</B> None.
<P>
<P><B>Affected By:</B><P>
<P>
Existing restarts. <P>
<A REL=DEFINITION HREF="m_rst_ca.htm#restart-case"><B>restart-case</B></A>, <A REL=DEFINITION HREF="m_rst_bi.htm#restart-bind"><B>restart-bind</B></A>, <A REL=DEFINITION HREF="m_w_cnd_.htm#with-condition-restarts"><B>with-condition-restarts</B></A>. <P>
<P><B>Exceptional Situations:</B> None.
<P>
<P><B>See Also:</B><P>
<P>
<A REL=DEFINITION HREF="f_comp_1.htm#compute-restarts"><B>compute-restarts</B></A> <P>
<P><B>Notes:</B><P>
<P>
<PRE>
(find-restart identifier)
== (find identifier (compute-restarts) :key :restart-name)
</PRE>
</TT> <P>
Although anonymous restarts have a name of <A REL=DEFINITION HREF="a_nil.htm#nil"><B>nil</B></A>, the consequences are unspecified if <A REL=DEFINITION HREF="a_nil.htm#nil"><B>nil</B></A> is given as an <I>identifier</I>. Occasionally, programmers lament that <A REL=DEFINITION HREF="a_nil.htm#nil"><B>nil</B></A> is not permissible as an <I>identifier</I> argument. In most such cases, <A REL=DEFINITION HREF="f_comp_1.htm#compute-restarts"><B>compute-restarts</B></A> can probably be used to simulate the desired effect. <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/iss076.htm">CONDITION-RESTARTS:PERMIT-ASSOCIATION</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>