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

133 lines
19 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 SUBTYPEP</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_deftp.htm">
<LINK REL=UP HREF="c_types_.htm">
<LINK REL=NEXT HREF="f_tp_of.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_deftp.htm"><IMG WIDTH=40 HEIGHT=40 ALT="[Previous]" SRC="../Graphics/Prev.gif" ALIGN=Bottom></A><A REL=UP HREF="c_types_.htm"><IMG WIDTH=40 HEIGHT=40 ALT="[Up]" SRC="../Graphics/Up.gif" ALIGN=Bottom></A><A REL=NEXT HREF="f_tp_of.htm"><IMG WIDTH=40 HEIGHT=40 ALT="[Next]" SRC="../Graphics/Next.gif" ALIGN=Bottom></A></H1>
<HR>
<A NAME="subtypep"><I>Function</I> <B>SUBTYPEP</B></A> <P>
<P>
<P><B>Syntax:</B><P>
<P>
<B>subtypep</B> <I>type-1 type-2 <TT>&amp;optional</TT> environment</I> =&gt; <I>subtype-p, valid-p</I><P>
<P>
<P><B>Arguments and Values:</B><P>
<P>
<I>type-1</I>---a <A REL=DEFINITION HREF="26_glo_t.htm#type_specifier"><I>type specifier</I></A>. <P>
<I>type-2</I>---a <A REL=DEFINITION HREF="26_glo_t.htm#type_specifier"><I>type specifier</I></A>. <P>
<I>environment</I>---an <A REL=DEFINITION HREF="26_glo_e.htm#environment"><I>environment</I></A> <A REL=DEFINITION HREF="26_glo_o.htm#object"><I>object</I></A>. The default is <A REL=DEFINITION HREF="a_nil.htm#nil"><B>nil</B></A>, denoting the <A REL=DEFINITION HREF="26_glo_n.htm#null_lexical_environment"><I>null lexical environment</I></A> and the current <A REL=DEFINITION HREF="26_glo_g.htm#global_environment"><I>global environment</I></A>. <P>
<I>subtype-p</I>---a <A REL=DEFINITION HREF="26_glo_g.htm#generalized_boolean"><I>generalized boolean</I></A>. <P>
<I>valid-p</I>---a <A REL=DEFINITION HREF="26_glo_g.htm#generalized_boolean"><I>generalized boolean</I></A>. <P>
<P><B>Description:</B><P>
<P>
If <I>type-1</I> is a <A REL=DEFINITION HREF="26_glo_r.htm#recognizable_subtype"><I>recognizable subtype</I></A> of <I>type-2</I>, the first <A REL=DEFINITION HREF="26_glo_v.htm#value"><I>value</I></A> is <A REL=DEFINITION HREF="26_glo_t.htm#true"><I>true</I></A>. Otherwise, the first <A REL=DEFINITION HREF="26_glo_v.htm#value"><I>value</I></A> is <A REL=DEFINITION HREF="26_glo_f.htm#false"><I>false</I></A>, indicating that either <I>type-1</I> is not a <A REL=DEFINITION HREF="26_glo_s.htm#subtype"><I>subtype</I></A> of <I>type-2</I>, or else <I>type-1</I> is a <A REL=DEFINITION HREF="26_glo_s.htm#subtype"><I>subtype</I></A> of <I>type-2</I> but is not a <A REL=DEFINITION HREF="26_glo_r.htm#recognizable_subtype"><I>recognizable subtype</I></A>. <P>
A second <A REL=DEFINITION HREF="26_glo_v.htm#value"><I>value</I></A> is also returned indicating the `certainty' of the first <A REL=DEFINITION HREF="26_glo_v.htm#value"><I>value</I></A>. If this value is <A REL=DEFINITION HREF="26_glo_t.htm#true"><I>true</I></A>, then the first value is an accurate indication of the <A REL=DEFINITION HREF="26_glo_s.htm#subtype"><I>subtype</I></A> relationship. (The second <A REL=DEFINITION HREF="26_glo_v.htm#value"><I>value</I></A> is always <A REL=DEFINITION HREF="26_glo_t.htm#true"><I>true</I></A> when the first <A REL=DEFINITION HREF="26_glo_v.htm#value"><I>value</I></A> is <A REL=DEFINITION HREF="26_glo_t.htm#true"><I>true</I></A>.) <P>
The next figure summarizes the possible combinations of <A REL=DEFINITION HREF="26_glo_v.htm#value"><I>values</I></A> that might result. <P>
<PRE>
Value 1 Value 2 Meaning
<A REL=DEFINITION HREF="26_glo_t.htm#true">true</A> <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A> type-1 is definitely a <A REL=DEFINITION HREF="26_glo_s.htm#subtype">subtype</A> of type-2.
<A REL=DEFINITION HREF="26_glo_f.htm#false">false</A> <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A> type-1 is definitely not a <A REL=DEFINITION HREF="26_glo_s.htm#subtype">subtype</A> of type-2.
<A REL=DEFINITION HREF="26_glo_f.htm#false">false</A> <A REL=DEFINITION HREF="26_glo_f.htm#false">false</A> <A REL=DEFINITION HREF="#subtypep">subtypep</A> could not determine the relationship,
so type-1 might or might not be a <A REL=DEFINITION HREF="26_glo_s.htm#subtype">subtype</A> of type-2.
</PRE>
<P><B>Figure 4-9. Result possibilities for subtypep</B> <P>
<P>
<A REL=DEFINITION HREF="#subtypep"><B>subtypep</B></A> is permitted to return the <A REL=DEFINITION HREF="26_glo_v.htm#value"><I>values</I></A> <A REL=DEFINITION HREF="26_glo_f.htm#false"><I>false</I></A> and <A REL=DEFINITION HREF="26_glo_f.htm#false"><I>false</I></A> only when at least one argument involves one of these <A REL=DEFINITION HREF="26_glo_t.htm#type_specifier"><I>type specifiers</I></A>: <B>and</B>, <B>eql</B>, the list form of <B>function</B>, <B>member</B>, <B>not</B>, <B>or</B>, <B>satisfies</B>, or <B>values</B>. (A <A REL=DEFINITION HREF="26_glo_t.htm#type_specifier"><I>type specifier</I></A> `involves' such a <A REL=DEFINITION HREF="26_glo_s.htm#symbol"><I>symbol</I></A> if, after being <A REL=DEFINITION HREF="26_glo_t.htm#type"><I>type</I></A> <I>expanded</I>, it contains that <A REL=DEFINITION HREF="26_glo_s.htm#symbol"><I>symbol</I></A> in a position that would call for its meaning as a <A REL=DEFINITION HREF="26_glo_t.htm#type_specifier"><I>type specifier</I></A> to be used.) One consequence of this is that if neither <I>type-1</I> nor <I>type-2</I> involves any of these <A REL=DEFINITION HREF="26_glo_t.htm#type_specifier"><I>type specifiers</I></A>, then <A REL=DEFINITION HREF="#subtypep"><B>subtypep</B></A> is obliged to determine the relationship accurately. In particular, <A REL=DEFINITION HREF="#subtypep"><B>subtypep</B></A> returns the <A REL=DEFINITION HREF="26_glo_v.htm#value"><I>values</I></A> <A REL=DEFINITION HREF="26_glo_t.htm#true"><I>true</I></A> and <A REL=DEFINITION HREF="26_glo_t.htm#true"><I>true</I></A> if the arguments are <A REL=DEFINITION HREF="f_equal.htm#equal"><B>equal</B></A> and do not involve any of these <A REL=DEFINITION HREF="26_glo_t.htm#type_specifier"><I>type specifiers</I></A>. <P>
<A REL=DEFINITION HREF="#subtypep"><B>subtypep</B></A> never returns a second value of <A REL=DEFINITION HREF="a_nil.htm#nil"><B>nil</B></A> when both <I>type-1</I> and <I>type-2</I> involve only the names in <A REL=DEFINITION HREF="04_bc.htm#standardizedatomictypespecs">Figure 4-2</A>, or names of <A REL=DEFINITION HREF="26_glo_t.htm#type"><I>types</I></A> defined by <A REL=DEFINITION HREF="m_defstr.htm#defstruct"><B>defstruct</B></A>, <A REL=DEFINITION HREF="m_defi_5.htm#define-condition"><B>define-condition</B></A>, or <A REL=DEFINITION HREF="m_defcla.htm#defclass"><B>defclass</B></A>, or <A REL=DEFINITION HREF="26_glo_d.htm#derived_type"><I>derived types</I></A> that expand into only those names. While <A REL=DEFINITION HREF="26_glo_t.htm#type_specifier"><I>type specifiers</I></A> listed in <A REL=DEFINITION HREF="04_bc.htm#standardizedatomictypespecs">Figure 4-2</A> and names of <A REL=DEFINITION HREF="m_defcla.htm#defclass"><B>defclass</B></A> and <A REL=DEFINITION HREF="m_defstr.htm#defstruct"><B>defstruct</B></A> can in some cases be implemented as <A REL=DEFINITION HREF="26_glo_d.htm#derived_type"><I>derived types</I></A>, <A REL=DEFINITION HREF="#subtypep"><B>subtypep</B></A> regards them as primitive. <P>
The relationships between <A REL=DEFINITION HREF="26_glo_t.htm#type"><I>types</I></A> reflected by <A REL=DEFINITION HREF="#subtypep"><B>subtypep</B></A> are those specific to the particular implementation. For example, if an implementation supports only a single type of floating-point numbers, in that implementation <TT>(subtypep 'float 'long-float)</TT> returns the <A REL=DEFINITION HREF="26_glo_v.htm#value"><I>values</I></A> <A REL=DEFINITION HREF="26_glo_t.htm#true"><I>true</I></A> and <A REL=DEFINITION HREF="26_glo_t.htm#true"><I>true</I></A> (since the two <A REL=DEFINITION HREF="26_glo_t.htm#type"><I>types</I></A> are identical). <P>
For all <I>T1</I> and <I>T2</I> other than <TT>*</TT>, <TT>(array </TT><I>T1</I><TT>)</TT> and <TT>(array </TT><I>T2</I><TT>)</TT> are two different <A REL=DEFINITION HREF="26_glo_t.htm#type_specifier"><I>type specifiers</I></A> that always refer to the same sets of things if and only if they refer to <A REL=DEFINITION HREF="26_glo_a.htm#array"><I>arrays</I></A> of exactly the same specialized representation, i.e., if <TT>(upgraded-array-element-type '</TT><I>T1</I><TT>)</TT> and <TT>(upgraded-array-element-type '</TT><I>T2</I><TT>)</TT> return two different <A REL=DEFINITION HREF="26_glo_t.htm#type_specifier"><I>type specifiers</I></A> that always refer to the same sets of <A REL=DEFINITION HREF="26_glo_o.htm#object"><I>objects</I></A>. This is another way of saying that <TT>`(array </TT><I>type-specifier</I><TT>)</TT> and <TT>`(array ,(upgraded-array-element-type '</TT><I>type-specifier</I><TT>))</TT> refer to the same set of specialized <A REL=DEFINITION HREF="26_glo_a.htm#array"><I>array</I></A> representations. For all <I>T1</I> and <I>T2</I> other than <TT>*</TT>, the intersection of <TT>(array </TT><I>T1</I><TT>)</TT> and <TT>(array </TT><I>T2</I><TT>)</TT> is the empty set if and only if they refer to <A REL=DEFINITION HREF="26_glo_a.htm#array"><I>arrays</I></A> of different, distinct specialized representations. <P>
Therefore, <P>
<PRE>
(subtypep '(array T1) '(array T2)) =&gt; <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>
</PRE>
</TT> if and only if <P>
<PRE>
(upgraded-array-element-type 'T1) and
(upgraded-array-element-type 'T2)
</PRE>
</TT> <P>
return two different <A REL=DEFINITION HREF="26_glo_t.htm#type_specifier"><I>type specifiers</I></A> that always refer to the same sets of <A REL=DEFINITION HREF="26_glo_o.htm#object"><I>objects</I></A>. <P>
For all type-specifiers <I>T1</I> and <I>T2</I> other than <TT>*</TT>, <P>
<PRE>
(subtypep '(complex T1) '(complex T2)) =&gt; <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>, <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>
</PRE>
</TT> <P>
if: <P><DL><DT>1. <TT>T1</TT> is a <A REL=DEFINITION HREF="26_glo_s.htm#subtype"><I>subtype</I></A> of <TT>T2</TT>, or <DD><DT>2. <TT>(upgraded-complex-part-type '</TT><I>T1</I><TT>)</TT> and <TT>(upgraded-complex-part-type '</TT><I>T2</I><TT>)</TT> return two different <A REL=DEFINITION HREF="26_glo_t.htm#type_specifier"><I>type specifiers</I></A> that always refer to the same sets of <A REL=DEFINITION HREF="26_glo_o.htm#object"><I>objects</I></A>; in this case, <TT>(complex </TT><I>T1</I><TT>)</TT> and <TT>(complex </TT><I>T2</I><TT>)</TT> both refer to the same specialized representation. <P><DD></DL>The <A REL=DEFINITION HREF="26_glo_v.htm#value"><I>values</I></A> are <A REL=DEFINITION HREF="26_glo_f.htm#false"><I>false</I></A> and <A REL=DEFINITION HREF="26_glo_t.htm#true"><I>true</I></A> otherwise. <P>
The form <P>
<PRE>
(subtypep '(complex single-float) '(complex float))
</PRE>
</TT> must return <A REL=DEFINITION HREF="26_glo_t.htm#true"><I>true</I></A> in all implementations, but <P>
<PRE>
(subtypep '(array single-float) '(array float))
</PRE>
</TT> <P>
returns <A REL=DEFINITION HREF="26_glo_t.htm#true"><I>true</I></A> only in implementations that do not have a specialized <A REL=DEFINITION HREF="26_glo_a.htm#array"><I>array</I></A> representation for <A REL=DEFINITION HREF="26_glo_s.htm#single_float"><I>single floats</I></A> distinct from that for other <A REL=DEFINITION HREF="26_glo_f.htm#float"><I>floats</I></A>. <P>
<P>
<P><B>Examples:</B><P>
<P>
<PRE>
(subtypep 'compiled-function 'function) =&gt; <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>, <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>
(subtypep 'null 'list) =&gt; <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>, <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>
(subtypep 'null 'symbol) =&gt; <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>, <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>
(subtypep 'integer 'string) =&gt; <A REL=DEFINITION HREF="26_glo_f.htm#false">false</A>, <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>
(subtypep '(satisfies dummy) nil) =&gt; <A REL=DEFINITION HREF="26_glo_f.htm#false">false</A>, <A REL=DEFINITION HREF="26_glo_i.htm#implementation-dependent">implementation-dependent</A>
(subtypep '(integer 1 3) '(integer 1 4)) =&gt; <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>, <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>
(subtypep '(integer (0) (0)) 'nil) =&gt; <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>, <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>
(subtypep 'nil '(integer (0) (0))) =&gt; <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>, <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>
(subtypep '(integer (0) (0)) '(member)) =&gt; <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>, <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A> ;or <A REL=DEFINITION HREF="26_glo_f.htm#false">false</A>, <A REL=DEFINITION HREF="26_glo_f.htm#false">false</A>
(subtypep '(member) 'nil) =&gt; <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>, <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A> ;or <A REL=DEFINITION HREF="26_glo_f.htm#false">false</A>, <A REL=DEFINITION HREF="26_glo_f.htm#false">false</A>
(subtypep 'nil '(member)) =&gt; <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>, <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A> ;or <A REL=DEFINITION HREF="26_glo_f.htm#false">false</A>, <A REL=DEFINITION HREF="26_glo_f.htm#false">false</A>
</PRE>
</TT> <P>
Let <TT>&lt;aet-x&gt;</TT> and <TT>&lt;aet-y&gt;</TT> be two distinct <A REL=DEFINITION HREF="26_glo_t.htm#type_specifier"><I>type specifiers</I></A> that do not always refer to the same sets of <A REL=DEFINITION HREF="26_glo_o.htm#object"><I>objects</I></A> in a given implementation, but for which <A REL=DEFINITION HREF="f_mk_ar.htm#make-array"><B>make-array</B></A>, will return an <A REL=DEFINITION HREF="26_glo_o.htm#object"><I>object</I></A> of the same <A REL=DEFINITION HREF="26_glo_a.htm#array"><I>array</I></A> <A REL=DEFINITION HREF="26_glo_t.htm#type"><I>type</I></A>. <P>
Thus, in each case, <P>
<PRE>
(subtypep (array-element-type (make-array 0 :element-type '&lt;aet-x&gt;))
(array-element-type (make-array 0 :element-type '&lt;aet-y&gt;)))
=&gt; <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>, <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>
(subtypep (array-element-type (make-array 0 :element-type '&lt;aet-y&gt;))
(array-element-type (make-array 0 :element-type '&lt;aet-x&gt;)))
=&gt; <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>, <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>
</PRE>
</TT> <P>
If <TT>(array &lt;aet-x&gt;)</TT> and <TT>(array &lt;aet-y&gt;)</TT> are different names for exactly the same set of <A REL=DEFINITION HREF="26_glo_o.htm#object"><I>objects</I></A>, these names should always refer to the same sets of <A REL=DEFINITION HREF="26_glo_o.htm#object"><I>objects</I></A>. That implies that the following set of tests are also true: <P>
<PRE>
(subtypep '(array &lt;aet-x&gt;) '(array &lt;aet-y&gt;)) =&gt; <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>, <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>
(subtypep '(array &lt;aet-y&gt;) '(array &lt;aet-x&gt;)) =&gt; <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>, <A REL=DEFINITION HREF="26_glo_t.htm#true">true</A>
</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=CHILD HREF="04_b.htm">Section 4.2 (Types)</A> <P>
<P><B>Notes:</B><P>
<P>
The small differences between the <A REL=DEFINITION HREF="#subtypep"><B>subtypep</B></A> specification for the <A REL=DEFINITION HREF="t_array.htm#array"><B>array</B></A> and <A REL=DEFINITION HREF="t_comple.htm#complex"><B>complex</B></A> types are necessary because there is no creation function for <A REL=DEFINITION HREF="26_glo_c.htm#complex"><I>complexes</I></A> which allows the specification of the resultant part type independently of the actual types of the parts. Thus in the case of the <A REL=DEFINITION HREF="26_glo_t.htm#type"><I>type</I></A> <A REL=DEFINITION HREF="t_comple.htm#complex"><B>complex</B></A>, the actual type of the parts is referred to, although a <A REL=DEFINITION HREF="26_glo_n.htm#number"><I>number</I></A> can be a member of more than one <A REL=DEFINITION HREF="26_glo_t.htm#type"><I>type</I></A>. For example, <TT>17</TT> is of <A REL=DEFINITION HREF="26_glo_t.htm#type"><I>type</I></A> <TT>(mod 18)</TT> as well as <A REL=DEFINITION HREF="26_glo_t.htm#type"><I>type</I></A> <TT>(mod 256)</TT> and <A REL=DEFINITION HREF="26_glo_t.htm#type"><I>type</I></A> <A REL=DEFINITION HREF="t_intege.htm#integer"><B>integer</B></A>; and <TT>2.3f5</TT> is of <A REL=DEFINITION HREF="26_glo_t.htm#type"><I>type</I></A> <A REL=DEFINITION HREF="t_short_.htm#single-float"><B>single-float</B></A> as well as <A REL=DEFINITION HREF="26_glo_t.htm#type"><I>type</I></A> <A REL=DEFINITION HREF="t_float.htm#float"><B>float</B></A>. <P>
<P>
<P><HR>The following <A REL=META HREF="../Front/X3J13Iss.htm">X3J13 cleanup issues</A>, <I>not part of the specification</I>, apply to this section:<P><UL><LI> <A REL=CHILD HREF="../Issues/iss015.htm">ARRAY-TYPE-ELEMENT-TYPE-SEMANTICS:UNIFY-UPGRADING</A><LI> <A REL=CHILD HREF="../Issues/iss335.htm">SUBTYPEP-TOO-VAGUE:CLARIFY-MORE</A><LI> <A REL=CHILD HREF="../Issues/iss334.htm">SUBTYPEP-ENVIRONMENT:ADD-ARG</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>