forked from robert-strandh/CLOS-MOP-HTML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
class-slots.html
79 lines (65 loc) · 1.85 KB
/
class-slots.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
<HTML>
<HEAD>
<TITLE>class-slots</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-slots"><I>Generic Function</I> <B>CLASS-SLOTS</B>
<P><B>Syntax:</B></P>
<P><B>class-slots</B> <I>class</I> =>
<I>slots</I>
<P><B>Arguments and values:</B></P>
<P><I>class</I> -- A class metaobject.</P>
<P><I>slots</I> -- List of effective slot definition metaobjects.</P>
<P><B>Description:</B></P>
<p>
Returns a possibly empty set of the slots accessible in instances of
<I>class</I>. The elements of this set are effective slot definition
metaobjects.
</p>
<p>
During class finalization
<a href="finalize-inheritance.html">finalize-inheritance</a> calls
<a href="compute-slots.html">compute-slots</a> to compute the slots of
the class. That value is associated with the class metaobject and is
returned by <B>class-slots</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-slots-standard-class.html">
<B>class-slots</B> (<I>class</I> standard-class)</a>
</td>
</tr>
<tr>
<td><a href="class-slots-funcallable-standard-class.html">
<B>class-slots</B> (<I>class</I> funcallable-standard-class)</a>
</td>
</tr>
<tr>
<td><a href="class-slots-forward-referenced-class.html">
<B>class-slots</B> (<I>class</I> forward-referenced-class)</a>
</td>
</tr>
<tr>
<td><a href="class-slots-built-in-class.html">
<B>class-slots</B> (<I>class</I> built-in-class)</a>
</td>
</tr>
</table>
</BODY>
</HTML>