forked from robert-strandh/CLOS-MOP-HTML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
class-precedence-list.html
80 lines (65 loc) · 1.98 KB
/
class-precedence-list.html
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
<HTML>
<HEAD>
<TITLE>class-precedence-list</TITLE>
<LINK rel="stylesheet" type="text/css" href="clos-mop.css">
</HEAD>
<BODY>
<ul class=navigation>
<a href="table-of-contents.html" title="Table of contents">
<li class=navigation><img src="toc.png" alt="TOC">
</li>
</a>
<a href="all-no-methods.html" title="Up">
<li class=navigation><img src="up.png" alt="Up">
</li>
</a>
</ul>
<A NAME="class-precedence-list"><I>Generic Function</I> <B>CLASS-PRECEDENCE-LIST</B>
<P><B>Syntax:</B></P>
<P><B>class-precedence-list</B> <I>class</I> =>
<I>precedence-list</I>
<P><B>Arguments and values:</B></P>
<P><I>class</I> -- A class metaobject.</P>
<P><I>precedence-list</I> -- List of class metaobjects.</P>
<P><B>Description:</B></P>
<p>
Returns the class precedence list of <I>class</I>. The elements of
this list are class metaobjects.
</p>
<p>
During class finalization
<a href="finalize-inheritance.html">finalize-inheritance</a> calls
<a href="compute-class-precedence-list.html">compute-class-precedence-list</a>
calls to compute the class precedence list of the class. That value
is associated with the class metaobject and is returned by
<B>class-precedence-list</B>.
</p>
<p>
This generic function signals an error if <I>class</I> has not been
finalized.
</p>
<P><B>Methods:</B></P>
<table>
<tr>
<td><a href="class-precedence-list-standard-class.html">
<B>class-precedence-list</B> (<I>class</I> standard-class)</a>
</td>
</tr>
<tr>
<td><a href="class-precedence-list-funcallable-standard-class.html">
<B>class-precedence-list</B> (<I>class</I> funcallable-standard-class)</a>
</td>
</tr>
<tr>
<td><a href="class-precedence-list-forward-referenced-class.html">
<B>class-precedence-list</B> (<I>class</I> forward-referenced-class)</a>
</td>
</tr>
<tr>
<td><a href="class-precedence-list-built-in-class.html">
<B>class-precedence-list</B> (<I>class</I> built-in-class)</a>
</td>
</tr>
</table>
</BODY>
</HTML>