forked from robert-strandh/CLOS-MOP-HTML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathallocate-instance-funcallable-standard-class.html
50 lines (41 loc) · 1.31 KB
/
allocate-instance-funcallable-standard-class.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
<HTML>
<HEAD>
<TITLE>allocate-instance-funcallable-standard-class</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="allocate-instance"><I>Method</I> <B>ALLOCATE-INSTANCE</B>
<P><B>Syntax:</B></P>
<P><B>allocate-instance</B> <I>(class</I>
funcallable-standard-class) <I><TT>&rest</TT></I> <I>initargs</I> =>
<I>instance</I>
<P><B>Description:</B></P>
<p>
This is a method on the generic
function <a href="allocate-instance.html">allocate-instance</a>.
</p>
<p>
This method allocates storage in the instance for each slot with allocation
<TT>:instance</TT>. These slots are unbound. Slots with any other allocation
are ignored by this method (no error is signaled).
</p>
<p>
The funcallable instance function of the instance is undefined --- the results
are undefined if the instance is applied to arguments before
<a href="set-funcallable-instance-function.html">
set-funcallable-instance-function</a>
has been used to set the funcallable
instance function.
</p>
</BODY>
</HTML>