autoc 1.1 → 1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.yardopts +3 -1
- data/CHANGES +15 -0
- data/README +2 -0
- data/doc/AutoC.html +84 -14
- data/doc/AutoC/Code.html +31 -31
- data/doc/AutoC/Collection.html +250 -182
- data/doc/AutoC/HashMap.html +565 -245
- data/doc/AutoC/HashSet.html +266 -264
- data/doc/AutoC/List.html +317 -249
- data/doc/AutoC/Module.html +66 -72
- data/doc/AutoC/Module/File.html +25 -25
- data/doc/AutoC/Module/Header.html +25 -25
- data/doc/AutoC/Module/Source.html +43 -43
- data/doc/AutoC/Priority.html +3 -3
- data/doc/AutoC/Queue.html +352 -286
- data/doc/AutoC/Reference.html +578 -0
- data/doc/AutoC/Type.html +941 -131
- data/doc/AutoC/UserDefinedType.html +64 -313
- data/doc/AutoC/Vector.html +336 -306
- data/doc/_index.html +22 -4
- data/doc/class_list.html +6 -2
- data/doc/file.CHANGES.html +102 -0
- data/doc/file.README.html +7 -4
- data/doc/file_list.html +8 -1
- data/doc/frames.html +1 -1
- data/doc/index.html +7 -4
- data/doc/js/full_list.js +4 -1
- data/doc/method_list.html +236 -118
- data/doc/top-level-namespace.html +3 -3
- data/lib/autoc.rb +3 -3
- data/lib/autoc/code.rb +11 -5
- data/lib/autoc/collection.rb +62 -56
- data/lib/autoc/collection/hash_map.rb +83 -63
- data/lib/autoc/collection/hash_set.rb +74 -64
- data/lib/autoc/collection/list.rb +48 -41
- data/lib/autoc/collection/queue.rb +53 -47
- data/lib/autoc/collection/vector.rb +63 -42
- data/lib/autoc/type.rb +326 -61
- data/test/test.c +120 -0
- data/test/test.rb +16 -2
- data/test/test_auto.c +1683 -987
- data/test/test_auto.h +491 -176
- metadata +22 -19
data/doc/_index.html
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
<head>
|
5
5
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
6
|
<title>
|
7
|
-
Documentation by YARD 0.8.7.
|
7
|
+
Documentation by YARD 0.8.7.6
|
8
8
|
|
9
9
|
</title>
|
10
10
|
|
@@ -56,7 +56,7 @@
|
|
56
56
|
|
57
57
|
<iframe id="search_frame"></iframe>
|
58
58
|
|
59
|
-
<div id="content"><h1 class="noborder title">Documentation by YARD 0.8.7.
|
59
|
+
<div id="content"><h1 class="noborder title">Documentation by YARD 0.8.7.6</h1>
|
60
60
|
<div id="listing">
|
61
61
|
<h1 class="alphaindex">Alphabetic Index</h1>
|
62
62
|
|
@@ -67,6 +67,9 @@
|
|
67
67
|
<li class="r1"><a href="index.html" title="README">README</a></li>
|
68
68
|
|
69
69
|
|
70
|
+
<li class="r2"><a href="file.CHANGES.html" title="CHANGES">CHANGES</a></li>
|
71
|
+
|
72
|
+
|
70
73
|
</ul>
|
71
74
|
|
72
75
|
<div class="clear"></div>
|
@@ -222,6 +225,21 @@
|
|
222
225
|
</ul>
|
223
226
|
|
224
227
|
|
228
|
+
<ul id="alpha_R" class="alpha">
|
229
|
+
<li class="letter">R</li>
|
230
|
+
<ul>
|
231
|
+
|
232
|
+
<li>
|
233
|
+
<span class='object_link'><a href="AutoC/Reference.html" title="AutoC::Reference (class)">Reference</a></span>
|
234
|
+
|
235
|
+
<small>(AutoC)</small>
|
236
|
+
|
237
|
+
</li>
|
238
|
+
|
239
|
+
</ul>
|
240
|
+
</ul>
|
241
|
+
|
242
|
+
|
225
243
|
<ul id="alpha_S" class="alpha">
|
226
244
|
<li class="letter">S</li>
|
227
245
|
<ul>
|
@@ -290,9 +308,9 @@
|
|
290
308
|
</div>
|
291
309
|
|
292
310
|
<div id="footer">
|
293
|
-
Generated on
|
311
|
+
Generated on Sat Nov 22 16:58:03 2014 by
|
294
312
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
295
|
-
0.8.7.
|
313
|
+
0.8.7.6 (ruby-2.1.5).
|
296
314
|
</div>
|
297
315
|
|
298
316
|
</body>
|
data/doc/class_list.html
CHANGED
@@ -20,7 +20,11 @@
|
|
20
20
|
</head>
|
21
21
|
<body>
|
22
22
|
<script type="text/javascript" charset="utf-8">
|
23
|
-
|
23
|
+
var hasFrames = false;
|
24
|
+
try {
|
25
|
+
hasFrames = window.top.frames.main ? true : false;
|
26
|
+
} catch (e) { }
|
27
|
+
if (hasFrames) {
|
24
28
|
document.getElementById('base_target').target = 'main';
|
25
29
|
document.body.className = 'frames';
|
26
30
|
}
|
@@ -46,7 +50,7 @@
|
|
46
50
|
|
47
51
|
<ul id="full_list" class="class">
|
48
52
|
<li><span class='object_link'><a href="top-level-namespace.html" title="Top Level Namespace (root)">Top Level Namespace</a></span></li>
|
49
|
-
<li><a class='toggle'></a> <span class='object_link'><a href="AutoC.html" title="AutoC (module)">AutoC</a></span><small class='search_info'>Top Level Namespace</small></li><ul><li><span class='object_link'><a href="AutoC/Code.html" title="AutoC::Code (class)">Code</a></span> < Object<small class='search_info'>AutoC</small></li><li><span class='object_link'><a href="AutoC/Collection.html" title="AutoC::Collection (class)">Collection</a></span> < Type<small class='search_info'>AutoC</small></li><li><span class='object_link'><a href="AutoC/HashMap.html" title="AutoC::HashMap (class)">HashMap</a></span> < Collection<small class='search_info'>AutoC</small></li><li><span class='object_link'><a href="AutoC/HashSet.html" title="AutoC::HashSet (class)">HashSet</a></span> < Collection<small class='search_info'>AutoC</small></li><li><span class='object_link'><a href="AutoC/List.html" title="AutoC::List (class)">List</a></span> < Collection<small class='search_info'>AutoC</small></li><li><a class='toggle'></a> <span class='object_link'><a href="AutoC/Module.html" title="AutoC::Module (class)">Module</a></span> < Object<small class='search_info'>AutoC</small></li><ul><li><span class='object_link'><a href="AutoC/Module/File.html" title="AutoC::Module::File (class)">File</a></span> < Object<small class='search_info'>AutoC::Module</small></li><li><span class='object_link'><a href="AutoC/Module/Header.html" title="AutoC::Module::Header (class)">Header</a></span> < File<small class='search_info'>AutoC::Module</small></li><li><span class='object_link'><a href="AutoC/Module/Source.html" title="AutoC::Module::Source (class)">Source</a></span> < File<small class='search_info'>AutoC::Module</small></li></ul><li><span class='object_link'><a href="AutoC/Priority.html" title="AutoC::Priority (module)">Priority</a></span><small class='search_info'>AutoC</small></li><li><span class='object_link'><a href="AutoC/Queue.html" title="AutoC::Queue (class)">Queue</a></span> < Collection<small class='search_info'>AutoC</small></li><li><span class='object_link'><a href="AutoC/Type.html" title="AutoC::Type (class)">Type</a></span> < Code<small class='search_info'>AutoC</small></li><li><span class='object_link'><a href="AutoC/UserDefinedType.html" title="AutoC::UserDefinedType (class)">UserDefinedType</a></span> < Type<small class='search_info'>AutoC</small></li><li><span class='object_link'><a href="AutoC/Vector.html" title="AutoC::Vector (class)">Vector</a></span> < Collection<small class='search_info'>AutoC</small></li></ul>
|
53
|
+
<li><a class='toggle'></a> <span class='object_link'><a href="AutoC.html" title="AutoC (module)">AutoC</a></span><small class='search_info'>Top Level Namespace</small></li><ul><li><span class='object_link'><a href="AutoC/Code.html" title="AutoC::Code (class)">Code</a></span> < Object<small class='search_info'>AutoC</small></li><li><span class='object_link'><a href="AutoC/Collection.html" title="AutoC::Collection (class)">Collection</a></span> < Type<small class='search_info'>AutoC</small></li><li><span class='object_link'><a href="AutoC/HashMap.html" title="AutoC::HashMap (class)">HashMap</a></span> < Collection<small class='search_info'>AutoC</small></li><li><span class='object_link'><a href="AutoC/HashSet.html" title="AutoC::HashSet (class)">HashSet</a></span> < Collection<small class='search_info'>AutoC</small></li><li><span class='object_link'><a href="AutoC/List.html" title="AutoC::List (class)">List</a></span> < Collection<small class='search_info'>AutoC</small></li><li><a class='toggle'></a> <span class='object_link'><a href="AutoC/Module.html" title="AutoC::Module (class)">Module</a></span> < Object<small class='search_info'>AutoC</small></li><ul><li><span class='object_link'><a href="AutoC/Module/File.html" title="AutoC::Module::File (class)">File</a></span> < Object<small class='search_info'>AutoC::Module</small></li><li><span class='object_link'><a href="AutoC/Module/Header.html" title="AutoC::Module::Header (class)">Header</a></span> < File<small class='search_info'>AutoC::Module</small></li><li><span class='object_link'><a href="AutoC/Module/Source.html" title="AutoC::Module::Source (class)">Source</a></span> < File<small class='search_info'>AutoC::Module</small></li></ul><li><span class='object_link'><a href="AutoC/Priority.html" title="AutoC::Priority (module)">Priority</a></span><small class='search_info'>AutoC</small></li><li><span class='object_link'><a href="AutoC/Queue.html" title="AutoC::Queue (class)">Queue</a></span> < Collection<small class='search_info'>AutoC</small></li><li><span class='object_link'><a href="AutoC/Reference.html" title="AutoC::Reference (class)">Reference</a></span> < Type<small class='search_info'>AutoC</small></li><li><span class='object_link'><a href="AutoC/Type.html" title="AutoC::Type (class)">Type</a></span> < Code<small class='search_info'>AutoC</small></li><li><span class='object_link'><a href="AutoC/UserDefinedType.html" title="AutoC::UserDefinedType (class)">UserDefinedType</a></span> < Type<small class='search_info'>AutoC</small></li><li><span class='object_link'><a href="AutoC/Vector.html" title="AutoC::Vector (class)">Vector</a></span> < Collection<small class='search_info'>AutoC</small></li></ul>
|
50
54
|
|
51
55
|
</ul>
|
52
56
|
</div>
|
@@ -0,0 +1,102 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
6
|
+
<title>
|
7
|
+
File: CHANGES
|
8
|
+
|
9
|
+
— Documentation by YARD 0.8.7.6
|
10
|
+
|
11
|
+
</title>
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
16
|
+
|
17
|
+
<script type="text/javascript" charset="utf-8">
|
18
|
+
hasFrames = window.top.frames.main ? true : false;
|
19
|
+
relpath = '';
|
20
|
+
framesUrl = "frames.html#!file.CHANGES.html";
|
21
|
+
</script>
|
22
|
+
|
23
|
+
|
24
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
25
|
+
|
26
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
27
|
+
|
28
|
+
|
29
|
+
</head>
|
30
|
+
<body>
|
31
|
+
<div id="header">
|
32
|
+
<div id="menu">
|
33
|
+
|
34
|
+
<a href="_index.html">Index</a> »
|
35
|
+
<span class="title">File: CHANGES</span>
|
36
|
+
|
37
|
+
|
38
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div id="search">
|
42
|
+
|
43
|
+
<a class="full_list_link" id="class_list_link"
|
44
|
+
href="class_list.html">
|
45
|
+
Class List
|
46
|
+
</a>
|
47
|
+
|
48
|
+
<a class="full_list_link" id="method_list_link"
|
49
|
+
href="method_list.html">
|
50
|
+
Method List
|
51
|
+
</a>
|
52
|
+
|
53
|
+
<a class="full_list_link" id="file_list_link"
|
54
|
+
href="file_list.html">
|
55
|
+
File List
|
56
|
+
</a>
|
57
|
+
|
58
|
+
</div>
|
59
|
+
<div class="clear"></div>
|
60
|
+
</div>
|
61
|
+
|
62
|
+
<iframe id="search_frame"></iframe>
|
63
|
+
|
64
|
+
<div id="content"><div id='filecontents'><div class="sect1">
|
65
|
+
<h2 id="_1_2">1.2</h2>
|
66
|
+
<div class="sectionbody">
|
67
|
+
<div class="paragraph">
|
68
|
+
<p>Introduced counted reference type AutoC::Reference.</p>
|
69
|
+
</div>
|
70
|
+
<div class="paragraph">
|
71
|
+
<p>Introduced type capabilities/restrictions and optional operations for collections.</p>
|
72
|
+
</div>
|
73
|
+
<div class="paragraph">
|
74
|
+
<p>Made AutoC::Vector#sort() an optional operation.</p>
|
75
|
+
</div>
|
76
|
+
</div>
|
77
|
+
</div>
|
78
|
+
<div class="sect1">
|
79
|
+
<h2 id="_1_1">1.1</h2>
|
80
|
+
<div class="sectionbody">
|
81
|
+
<div class="paragraph">
|
82
|
+
<p>Fixed online documentation generation issues.</p>
|
83
|
+
</div>
|
84
|
+
</div>
|
85
|
+
</div>
|
86
|
+
<div class="sect1">
|
87
|
+
<h2 id="_1_0">1.0</h2>
|
88
|
+
<div class="sectionbody">
|
89
|
+
<div class="paragraph">
|
90
|
+
<p>Initial release of version 1.</p>
|
91
|
+
</div>
|
92
|
+
</div>
|
93
|
+
</div></div></div>
|
94
|
+
|
95
|
+
<div id="footer">
|
96
|
+
Generated on Sat Nov 22 16:58:03 2014 by
|
97
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
98
|
+
0.8.7.6 (ruby-2.1.5).
|
99
|
+
</div>
|
100
|
+
|
101
|
+
</body>
|
102
|
+
</html>
|
data/doc/file.README.html
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
File: README
|
8
8
|
|
9
|
-
— Documentation by YARD 0.8.7.
|
9
|
+
— Documentation by YARD 0.8.7.6
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -68,7 +68,7 @@
|
|
68
68
|
<p>AutoC is a free software distributed under the terms of modified BSD license.</p>
|
69
69
|
</div>
|
70
70
|
<div class="paragraph">
|
71
|
-
<p>Project home page is <a href="http://autoc.sourceforge.net/">http://autoc.sourceforge.net/</a></p>
|
71
|
+
<p>Project home page is <a href="http://autoc.sourceforge.net/" class="bare">http://autoc.sourceforge.net/</a></p>
|
72
72
|
</div>
|
73
73
|
<div class="paragraph">
|
74
74
|
<p>AutoC is available via the RubyGems infrastructure; the easiest way to obtain it is:</p>
|
@@ -94,6 +94,9 @@
|
|
94
94
|
</div>
|
95
95
|
</div>
|
96
96
|
<div class="paragraph">
|
97
|
+
<p>For (in)complete list of changes refer to <a href="file.CHANGES.html" title="CHANGES">CHANGES</a>.</p>
|
98
|
+
</div>
|
99
|
+
<div class="paragraph">
|
97
100
|
<p>That’s all for now, folks! Stay tuned.</p>
|
98
101
|
</div>
|
99
102
|
<div class="paragraph">
|
@@ -103,9 +106,9 @@
|
|
103
106
|
</div></div></div>
|
104
107
|
|
105
108
|
<div id="footer">
|
106
|
-
Generated on
|
109
|
+
Generated on Sat Nov 22 16:58:03 2014 by
|
107
110
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
108
|
-
0.8.7.
|
111
|
+
0.8.7.6 (ruby-2.1.5).
|
109
112
|
</div>
|
110
113
|
|
111
114
|
</body>
|
data/doc/file_list.html
CHANGED
@@ -20,7 +20,11 @@
|
|
20
20
|
</head>
|
21
21
|
<body>
|
22
22
|
<script type="text/javascript" charset="utf-8">
|
23
|
-
|
23
|
+
var hasFrames = false;
|
24
|
+
try {
|
25
|
+
hasFrames = window.top.frames.main ? true : false;
|
26
|
+
} catch (e) { }
|
27
|
+
if (hasFrames) {
|
24
28
|
document.getElementById('base_target').target = 'main';
|
25
29
|
document.body.className = 'frames';
|
26
30
|
}
|
@@ -50,6 +54,9 @@
|
|
50
54
|
<li class="r1"><span class="object_link"><a href="index.html" title="README">README</a></a></li>
|
51
55
|
|
52
56
|
|
57
|
+
<li class="r2"><span class="object_link"><a href="file.CHANGES.html" title="CHANGES">CHANGES</a></a></li>
|
58
|
+
|
59
|
+
|
53
60
|
</ul>
|
54
61
|
</div>
|
55
62
|
</body>
|
data/doc/frames.html
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
5
|
<head>
|
6
6
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
7
|
-
<title>Documentation by YARD 0.8.7.
|
7
|
+
<title>Documentation by YARD 0.8.7.6</title>
|
8
8
|
</head>
|
9
9
|
<script type="text/javascript" charset="utf-8">
|
10
10
|
window.onload = function() {
|
data/doc/index.html
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
File: README
|
8
8
|
|
9
|
-
— Documentation by YARD 0.8.7.
|
9
|
+
— Documentation by YARD 0.8.7.6
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -68,7 +68,7 @@
|
|
68
68
|
<p>AutoC is a free software distributed under the terms of modified BSD license.</p>
|
69
69
|
</div>
|
70
70
|
<div class="paragraph">
|
71
|
-
<p>Project home page is <a href="http://autoc.sourceforge.net/">http://autoc.sourceforge.net/</a></p>
|
71
|
+
<p>Project home page is <a href="http://autoc.sourceforge.net/" class="bare">http://autoc.sourceforge.net/</a></p>
|
72
72
|
</div>
|
73
73
|
<div class="paragraph">
|
74
74
|
<p>AutoC is available via the RubyGems infrastructure; the easiest way to obtain it is:</p>
|
@@ -94,6 +94,9 @@
|
|
94
94
|
</div>
|
95
95
|
</div>
|
96
96
|
<div class="paragraph">
|
97
|
+
<p>For (in)complete list of changes refer to <a href="file.CHANGES.html" title="CHANGES">CHANGES</a>.</p>
|
98
|
+
</div>
|
99
|
+
<div class="paragraph">
|
97
100
|
<p>That’s all for now, folks! Stay tuned.</p>
|
98
101
|
</div>
|
99
102
|
<div class="paragraph">
|
@@ -103,9 +106,9 @@
|
|
103
106
|
</div></div></div>
|
104
107
|
|
105
108
|
<div id="footer">
|
106
|
-
Generated on
|
109
|
+
Generated on Sat Nov 22 16:58:03 2014 by
|
107
110
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
108
|
-
0.8.7.
|
111
|
+
0.8.7.6 (ruby-2.1.5).
|
109
112
|
</div>
|
110
113
|
|
111
114
|
</body>
|
data/doc/js/full_list.js
CHANGED
@@ -123,7 +123,10 @@ function linkList() {
|
|
123
123
|
}
|
124
124
|
}
|
125
125
|
if (clicked) clicked.removeClass('clicked');
|
126
|
-
var win
|
126
|
+
var win;
|
127
|
+
try {
|
128
|
+
win = window.top.frames.main ? window.top.frames.main : window.parent;
|
129
|
+
} catch (e) { win = window.parent; }
|
127
130
|
if (this.tagName.toLowerCase() == "a") {
|
128
131
|
clicked = $(this).parents('li').addClass('clicked');
|
129
132
|
win.location = this.href;
|
data/doc/method_list.html
CHANGED
@@ -20,7 +20,11 @@
|
|
20
20
|
</head>
|
21
21
|
<body>
|
22
22
|
<script type="text/javascript" charset="utf-8">
|
23
|
-
|
23
|
+
var hasFrames = false;
|
24
|
+
try {
|
25
|
+
hasFrames = window.top.frames.main ? true : false;
|
26
|
+
} catch (e) { }
|
27
|
+
if (hasFrames) {
|
24
28
|
document.getElementById('base_target').target = 'main';
|
25
29
|
document.body.className = 'frames';
|
26
30
|
}
|
@@ -59,6 +63,30 @@
|
|
59
63
|
</li>
|
60
64
|
|
61
65
|
|
66
|
+
<li class="r1 ">
|
67
|
+
<span class='object_link'><a href="AutoC/Collection.html#%3D%3D-instance_method" title="AutoC::Collection#== (method)">#==</a></span>
|
68
|
+
<small>AutoC::Collection</small>
|
69
|
+
</li>
|
70
|
+
|
71
|
+
|
72
|
+
<li class="r2 ">
|
73
|
+
<span class='object_link'><a href="AutoC/Type.html#%3D%3D-instance_method" title="AutoC::Type#== (method)">#==</a></span>
|
74
|
+
<small>AutoC::Type</small>
|
75
|
+
</li>
|
76
|
+
|
77
|
+
|
78
|
+
<li class="r1 ">
|
79
|
+
<span class='object_link'><a href="AutoC/Reference.html#%3D%3D-instance_method" title="AutoC::Reference#== (method)">#==</a></span>
|
80
|
+
<small>AutoC::Reference</small>
|
81
|
+
</li>
|
82
|
+
|
83
|
+
|
84
|
+
<li class="r2 ">
|
85
|
+
<span class='object_link'><a href="AutoC/HashMap.html#%3D%3D-instance_method" title="AutoC::HashMap#== (method)">#==</a></span>
|
86
|
+
<small>AutoC::HashMap</small>
|
87
|
+
</li>
|
88
|
+
|
89
|
+
|
62
90
|
<li class="r1 ">
|
63
91
|
<span class='object_link'><a href="AutoC/Type.html#abort-instance_method" title="AutoC::Type#abort (method)">#abort</a></span>
|
64
92
|
<small>AutoC::Type</small>
|
@@ -78,143 +106,155 @@
|
|
78
106
|
|
79
107
|
|
80
108
|
<li class="r2 ">
|
81
|
-
<span class='object_link'><a href="AutoC
|
82
|
-
<small>AutoC
|
109
|
+
<span class='object_link'><a href="AutoC.html#c_id-class_method" title="AutoC.c_id (method)">c_id</a></span>
|
110
|
+
<small>AutoC</small>
|
83
111
|
</li>
|
84
112
|
|
85
113
|
|
86
114
|
<li class="r1 ">
|
87
|
-
<span class='object_link'><a href="AutoC/
|
88
|
-
<small>AutoC::
|
115
|
+
<span class='object_link'><a href="AutoC/Type.html#calloc-instance_method" title="AutoC::Type#calloc (method)">#calloc</a></span>
|
116
|
+
<small>AutoC::Type</small>
|
89
117
|
</li>
|
90
118
|
|
91
119
|
|
92
120
|
<li class="r2 ">
|
93
|
-
<span class='object_link'><a href="AutoC/
|
94
|
-
<small>AutoC::
|
121
|
+
<span class='object_link'><a href="AutoC/Type.html#coerce-class_method" title="AutoC::Type.coerce (method)">coerce</a></span>
|
122
|
+
<small>AutoC::Type</small>
|
95
123
|
</li>
|
96
124
|
|
97
125
|
|
98
126
|
<li class="r1 ">
|
99
|
-
<span class='object_link'><a href="AutoC/Collection.html#
|
127
|
+
<span class='object_link'><a href="AutoC/Collection.html#comparable%3F-instance_method" title="AutoC::Collection#comparable? (method)">#comparable?</a></span>
|
100
128
|
<small>AutoC::Collection</small>
|
101
129
|
</li>
|
102
130
|
|
103
131
|
|
104
132
|
<li class="r2 ">
|
105
|
-
<span class='object_link'><a href="AutoC/
|
106
|
-
<small>AutoC::
|
133
|
+
<span class='object_link'><a href="AutoC/HashMap.html#comparable%3F-instance_method" title="AutoC::HashMap#comparable? (method)">#comparable?</a></span>
|
134
|
+
<small>AutoC::HashMap</small>
|
107
135
|
</li>
|
108
136
|
|
109
137
|
|
110
138
|
<li class="r1 ">
|
111
|
-
<span class='object_link'><a href="AutoC/
|
112
|
-
<small>AutoC::
|
139
|
+
<span class='object_link'><a href="AutoC/Type.html#comparable%3F-instance_method" title="AutoC::Type#comparable? (method)">#comparable?</a></span>
|
140
|
+
<small>AutoC::Type</small>
|
113
141
|
</li>
|
114
142
|
|
115
143
|
|
116
144
|
<li class="r2 ">
|
117
|
-
<span class='object_link'><a href="AutoC/
|
118
|
-
<small>AutoC::
|
145
|
+
<span class='object_link'><a href="AutoC/Type.html#constructible%3F-instance_method" title="AutoC::Type#constructible? (method)">#constructible?</a></span>
|
146
|
+
<small>AutoC::Type</small>
|
119
147
|
</li>
|
120
148
|
|
121
149
|
|
122
150
|
<li class="r1 ">
|
123
|
-
<span class='object_link'><a href="AutoC/Collection.html#
|
151
|
+
<span class='object_link'><a href="AutoC/Collection.html#copyable%3F-instance_method" title="AutoC::Collection#copyable? (method)">#copyable?</a></span>
|
124
152
|
<small>AutoC::Collection</small>
|
125
153
|
</li>
|
126
154
|
|
127
155
|
|
128
156
|
<li class="r2 ">
|
129
|
-
<span class='object_link'><a href="AutoC/
|
130
|
-
<small>AutoC::
|
157
|
+
<span class='object_link'><a href="AutoC/HashMap.html#copyable%3F-instance_method" title="AutoC::HashMap#copyable? (method)">#copyable?</a></span>
|
158
|
+
<small>AutoC::HashMap</small>
|
131
159
|
</li>
|
132
160
|
|
133
161
|
|
134
162
|
<li class="r1 ">
|
135
|
-
<span class='object_link'><a href="AutoC/
|
136
|
-
<small>AutoC::
|
163
|
+
<span class='object_link'><a href="AutoC/Type.html#copyable%3F-instance_method" title="AutoC::Type#copyable? (method)">#copyable?</a></span>
|
164
|
+
<small>AutoC::Type</small>
|
137
165
|
</li>
|
138
166
|
|
139
167
|
|
140
168
|
<li class="r2 ">
|
141
|
-
<span class='object_link'><a href="AutoC/
|
142
|
-
<small>AutoC::
|
169
|
+
<span class='object_link'><a href="AutoC/Type.html#destructible%3F-instance_method" title="AutoC::Type#destructible? (method)">#destructible?</a></span>
|
170
|
+
<small>AutoC::Type</small>
|
143
171
|
</li>
|
144
172
|
|
145
173
|
|
146
174
|
<li class="r1 ">
|
147
|
-
<span class='object_link'><a href="AutoC/
|
148
|
-
<small>AutoC::
|
175
|
+
<span class='object_link'><a href="AutoC/Collection.html#element-instance_method" title="AutoC::Collection#element (method)">#element</a></span>
|
176
|
+
<small>AutoC::Collection</small>
|
149
177
|
</li>
|
150
178
|
|
151
179
|
|
152
180
|
<li class="r2 ">
|
153
|
-
<span class='object_link'><a href="AutoC/
|
154
|
-
<small>AutoC::
|
181
|
+
<span class='object_link'><a href="AutoC/Module/File.html#entities-instance_method" title="AutoC::Module::File#entities (method)">#entities</a></span>
|
182
|
+
<small>AutoC::Module::File</small>
|
155
183
|
</li>
|
156
184
|
|
157
185
|
|
158
186
|
<li class="r1 ">
|
159
|
-
<span class='object_link'><a href="AutoC/
|
160
|
-
<small>AutoC::
|
187
|
+
<span class='object_link'><a href="AutoC/Code.html#entities-instance_method" title="AutoC::Code#entities (method)">#entities</a></span>
|
188
|
+
<small>AutoC::Code</small>
|
161
189
|
</li>
|
162
190
|
|
163
191
|
|
164
192
|
<li class="r2 ">
|
193
|
+
<span class='object_link'><a href="AutoC/HashMap.html#entities-instance_method" title="AutoC::HashMap#entities (method)">#entities</a></span>
|
194
|
+
<small>AutoC::HashMap</small>
|
195
|
+
</li>
|
196
|
+
|
197
|
+
|
198
|
+
<li class="r1 ">
|
165
199
|
<span class='object_link'><a href="AutoC/Type.html#entities-instance_method" title="AutoC::Type#entities (method)">#entities</a></span>
|
166
200
|
<small>AutoC::Type</small>
|
167
201
|
</li>
|
168
202
|
|
169
203
|
|
170
|
-
<li class="
|
204
|
+
<li class="r2 ">
|
171
205
|
<span class='object_link'><a href="AutoC/Collection.html#entities-instance_method" title="AutoC::Collection#entities (method)">#entities</a></span>
|
172
206
|
<small>AutoC::Collection</small>
|
173
207
|
</li>
|
174
208
|
|
175
209
|
|
176
|
-
<li class="
|
177
|
-
<span class='object_link'><a href="AutoC/UserDefinedType.html#
|
210
|
+
<li class="r1 ">
|
211
|
+
<span class='object_link'><a href="AutoC/UserDefinedType.html#entities-instance_method" title="AutoC::UserDefinedType#entities (method)">#entities</a></span>
|
178
212
|
<small>AutoC::UserDefinedType</small>
|
179
213
|
</li>
|
180
214
|
|
181
215
|
|
182
|
-
<li class="
|
183
|
-
<span class='object_link'><a href="AutoC/
|
184
|
-
<small>AutoC::
|
216
|
+
<li class="r2 ">
|
217
|
+
<span class='object_link'><a href="AutoC/Reference.html#entities-instance_method" title="AutoC::Reference#entities (method)">#entities</a></span>
|
218
|
+
<small>AutoC::Reference</small>
|
185
219
|
</li>
|
186
220
|
|
187
221
|
|
188
|
-
<li class="
|
222
|
+
<li class="r1 ">
|
189
223
|
<span class='object_link'><a href="AutoC/Type.html#extern-instance_method" title="AutoC::Type#extern (method)">#extern</a></span>
|
190
224
|
<small>AutoC::Type</small>
|
191
225
|
</li>
|
192
226
|
|
193
227
|
|
194
|
-
<li class="
|
228
|
+
<li class="r2 ">
|
195
229
|
<span class='object_link'><a href="AutoC/Module/Header.html#file_name-instance_method" title="AutoC::Module::Header#file_name (method)">#file_name</a></span>
|
196
230
|
<small>AutoC::Module::Header</small>
|
197
231
|
</li>
|
198
232
|
|
199
233
|
|
200
|
-
<li class="
|
234
|
+
<li class="r1 ">
|
201
235
|
<span class='object_link'><a href="AutoC/Module/Source.html#file_name-instance_method" title="AutoC::Module::Source#file_name (method)">#file_name</a></span>
|
202
236
|
<small>AutoC::Module::Source</small>
|
203
237
|
</li>
|
204
238
|
|
205
239
|
|
206
|
-
<li class="
|
240
|
+
<li class="r2 ">
|
207
241
|
<span class='object_link'><a href="AutoC/Type.html#free-instance_method" title="AutoC::Type#free (method)">#free</a></span>
|
208
242
|
<small>AutoC::Type</small>
|
209
243
|
</li>
|
210
244
|
|
211
245
|
|
212
|
-
<li class="
|
246
|
+
<li class="r1 ">
|
213
247
|
<span class='object_link'><a href="AutoC/Module/File.html#generate-instance_method" title="AutoC::Module::File#generate (method)">#generate</a></span>
|
214
248
|
<small>AutoC::Module::File</small>
|
215
249
|
</li>
|
216
250
|
|
217
251
|
|
252
|
+
<li class="r2 ">
|
253
|
+
<span class='object_link'><a href="AutoC/Module.html#generate%21-class_method" title="AutoC::Module.generate! (method)">generate!</a></span>
|
254
|
+
<small>AutoC::Module</small>
|
255
|
+
</li>
|
256
|
+
|
257
|
+
|
218
258
|
<li class="r1 ">
|
219
259
|
<span class='object_link'><a href="AutoC/Module.html#generate%21-instance_method" title="AutoC::Module#generate! (method)">#generate!</a></span>
|
220
260
|
<small>AutoC::Module</small>
|
@@ -222,56 +262,92 @@
|
|
222
262
|
|
223
263
|
|
224
264
|
<li class="r2 ">
|
225
|
-
<span class='object_link'><a href="AutoC/
|
226
|
-
<small>AutoC::
|
265
|
+
<span class='object_link'><a href="AutoC/Collection.html#hash-instance_method" title="AutoC::Collection#hash (method)">#hash</a></span>
|
266
|
+
<small>AutoC::Collection</small>
|
227
267
|
</li>
|
228
268
|
|
229
269
|
|
230
270
|
<li class="r1 ">
|
231
|
-
<span class='object_link'><a href="AutoC/
|
232
|
-
<small>AutoC::
|
271
|
+
<span class='object_link'><a href="AutoC/HashMap.html#hash-instance_method" title="AutoC::HashMap#hash (method)">#hash</a></span>
|
272
|
+
<small>AutoC::HashMap</small>
|
233
273
|
</li>
|
234
274
|
|
235
275
|
|
236
276
|
<li class="r2 ">
|
237
|
-
<span class='object_link'><a href="AutoC/
|
238
|
-
<small>AutoC::
|
277
|
+
<span class='object_link'><a href="AutoC/Type.html#hash-instance_method" title="AutoC::Type#hash (method)">#hash</a></span>
|
278
|
+
<small>AutoC::Type</small>
|
239
279
|
</li>
|
240
280
|
|
241
281
|
|
242
282
|
<li class="r1 ">
|
243
|
-
<span class='object_link'><a href="AutoC/
|
283
|
+
<span class='object_link'><a href="AutoC/Type.html#hashable%3F-instance_method" title="AutoC::Type#hashable? (method)">#hashable?</a></span>
|
284
|
+
<small>AutoC::Type</small>
|
285
|
+
</li>
|
286
|
+
|
287
|
+
|
288
|
+
<li class="r2 ">
|
289
|
+
<span class='object_link'><a href="AutoC/HashMap.html#hashable%3F-instance_method" title="AutoC::HashMap#hashable? (method)">#hashable?</a></span>
|
290
|
+
<small>AutoC::HashMap</small>
|
291
|
+
</li>
|
292
|
+
|
293
|
+
|
294
|
+
<li class="r1 ">
|
295
|
+
<span class='object_link'><a href="AutoC/Collection.html#hashable%3F-instance_method" title="AutoC::Collection#hashable? (method)">#hashable?</a></span>
|
244
296
|
<small>AutoC::Collection</small>
|
245
297
|
</li>
|
246
298
|
|
247
299
|
|
248
300
|
<li class="r2 ">
|
301
|
+
<span class='object_link'><a href="AutoC/Module.html#header-instance_method" title="AutoC::Module#header (method)">#header</a></span>
|
302
|
+
<small>AutoC::Module</small>
|
303
|
+
</li>
|
304
|
+
|
305
|
+
|
306
|
+
<li class="r1 ">
|
249
307
|
<span class='object_link'><a href="AutoC/Module/Source.html#index-instance_method" title="AutoC::Module::Source#index (method)">#index</a></span>
|
250
308
|
<small>AutoC::Module::Source</small>
|
251
309
|
</li>
|
252
310
|
|
253
311
|
|
254
|
-
<li class="
|
312
|
+
<li class="r2 ">
|
255
313
|
<span class='object_link'><a href="AutoC/Type.html#initialize-instance_method" title="AutoC::Type#initialize (method)">#initialize</a></span>
|
256
314
|
<small>AutoC::Type</small>
|
257
315
|
</li>
|
258
316
|
|
259
317
|
|
318
|
+
<li class="r1 ">
|
319
|
+
<span class='object_link'><a href="AutoC/List.html#initialize-instance_method" title="AutoC::List#initialize (method)">#initialize</a></span>
|
320
|
+
<small>AutoC::List</small>
|
321
|
+
</li>
|
322
|
+
|
323
|
+
|
260
324
|
<li class="r2 ">
|
325
|
+
<span class='object_link'><a href="AutoC/Vector.html#initialize-instance_method" title="AutoC::Vector#initialize (method)">#initialize</a></span>
|
326
|
+
<small>AutoC::Vector</small>
|
327
|
+
</li>
|
328
|
+
|
329
|
+
|
330
|
+
<li class="r1 ">
|
261
331
|
<span class='object_link'><a href="AutoC/Collection.html#initialize-instance_method" title="AutoC::Collection#initialize (method)">#initialize</a></span>
|
262
332
|
<small>AutoC::Collection</small>
|
263
333
|
</li>
|
264
334
|
|
265
335
|
|
336
|
+
<li class="r2 ">
|
337
|
+
<span class='object_link'><a href="AutoC/UserDefinedType.html#initialize-instance_method" title="AutoC::UserDefinedType#initialize (method)">#initialize</a></span>
|
338
|
+
<small>AutoC::UserDefinedType</small>
|
339
|
+
</li>
|
340
|
+
|
341
|
+
|
266
342
|
<li class="r1 ">
|
267
|
-
<span class='object_link'><a href="AutoC/
|
268
|
-
<small>AutoC::
|
343
|
+
<span class='object_link'><a href="AutoC/HashMap.html#initialize-instance_method" title="AutoC::HashMap#initialize (method)">#initialize</a></span>
|
344
|
+
<small>AutoC::HashMap</small>
|
269
345
|
</li>
|
270
346
|
|
271
347
|
|
272
348
|
<li class="r2 ">
|
273
|
-
<span class='object_link'><a href="AutoC/
|
274
|
-
<small>AutoC::
|
349
|
+
<span class='object_link'><a href="AutoC/Queue.html#initialize-instance_method" title="AutoC::Queue#initialize (method)">#initialize</a></span>
|
350
|
+
<small>AutoC::Queue</small>
|
275
351
|
</li>
|
276
352
|
|
277
353
|
|
@@ -282,50 +358,50 @@
|
|
282
358
|
|
283
359
|
|
284
360
|
<li class="r2 ">
|
285
|
-
<span class='object_link'><a href="AutoC/
|
286
|
-
<small>AutoC::
|
361
|
+
<span class='object_link'><a href="AutoC/Module/Source.html#initialize-instance_method" title="AutoC::Module::Source#initialize (method)">#initialize</a></span>
|
362
|
+
<small>AutoC::Module::Source</small>
|
287
363
|
</li>
|
288
364
|
|
289
365
|
|
290
366
|
<li class="r1 ">
|
291
|
-
<span class='object_link'><a href="AutoC/
|
292
|
-
<small>AutoC::
|
367
|
+
<span class='object_link'><a href="AutoC/Reference.html#initialize-instance_method" title="AutoC::Reference#initialize (method)">#initialize</a></span>
|
368
|
+
<small>AutoC::Reference</small>
|
293
369
|
</li>
|
294
370
|
|
295
371
|
|
296
372
|
<li class="r2 ">
|
297
|
-
<span class='object_link'><a href="AutoC/Module/
|
298
|
-
<small>AutoC::Module::
|
373
|
+
<span class='object_link'><a href="AutoC/Module/Header.html#initialize-instance_method" title="AutoC::Module::Header#initialize (method)">#initialize</a></span>
|
374
|
+
<small>AutoC::Module::Header</small>
|
299
375
|
</li>
|
300
376
|
|
301
377
|
|
302
378
|
<li class="r1 ">
|
303
|
-
<span class='object_link'><a href="AutoC/
|
304
|
-
<small>AutoC::
|
379
|
+
<span class='object_link'><a href="AutoC/HashSet.html#initialize-instance_method" title="AutoC::HashSet#initialize (method)">#initialize</a></span>
|
380
|
+
<small>AutoC::HashSet</small>
|
305
381
|
</li>
|
306
382
|
|
307
383
|
|
308
384
|
<li class="r2 ">
|
309
|
-
<span class='object_link'><a href="AutoC/
|
310
|
-
<small>AutoC::
|
385
|
+
<span class='object_link'><a href="AutoC/Module/File.html#initialize-instance_method" title="AutoC::Module::File#initialize (method)">#initialize</a></span>
|
386
|
+
<small>AutoC::Module::File</small>
|
311
387
|
</li>
|
312
388
|
|
313
389
|
|
314
390
|
<li class="r1 ">
|
315
|
-
<span class='object_link'><a href="AutoC/
|
316
|
-
<small>AutoC::
|
391
|
+
<span class='object_link'><a href="AutoC/Type.html#inline-instance_method" title="AutoC::Type#inline (method)">#inline</a></span>
|
392
|
+
<small>AutoC::Type</small>
|
317
393
|
</li>
|
318
394
|
|
319
395
|
|
320
396
|
<li class="r2 ">
|
321
|
-
<span class='object_link'><a href="AutoC/
|
322
|
-
<small>AutoC::
|
397
|
+
<span class='object_link'><a href="AutoC/Collection.html#it_ref-instance_method" title="AutoC::Collection#it_ref (method)">#it_ref</a></span>
|
398
|
+
<small>AutoC::Collection</small>
|
323
399
|
</li>
|
324
400
|
|
325
401
|
|
326
402
|
<li class="r1 ">
|
327
|
-
<span class='object_link'><a href="AutoC/
|
328
|
-
<small>AutoC::
|
403
|
+
<span class='object_link'><a href="AutoC/HashMap.html#key-instance_method" title="AutoC::HashMap#key (method)">#key</a></span>
|
404
|
+
<small>AutoC::HashMap</small>
|
329
405
|
</li>
|
330
406
|
|
331
407
|
|
@@ -384,59 +460,95 @@
|
|
384
460
|
|
385
461
|
|
386
462
|
<li class="r1 ">
|
463
|
+
<span class='object_link'><a href="AutoC/Type.html#orderable%3F-instance_method" title="AutoC::Type#orderable? (method)">#orderable?</a></span>
|
464
|
+
<small>AutoC::Type</small>
|
465
|
+
</li>
|
466
|
+
|
467
|
+
|
468
|
+
<li class="r2 ">
|
469
|
+
<span class='object_link'><a href="AutoC/Type.html#prefix-instance_method" title="AutoC::Type#prefix (method)">#prefix</a></span>
|
470
|
+
<small>AutoC::Type</small>
|
471
|
+
</li>
|
472
|
+
|
473
|
+
|
474
|
+
<li class="r1 ">
|
475
|
+
<span class='object_link'><a href="AutoC/UserDefinedType.html#prefix-instance_method" title="AutoC::UserDefinedType#prefix (method)">#prefix</a></span>
|
476
|
+
<small>AutoC::UserDefinedType</small>
|
477
|
+
</li>
|
478
|
+
|
479
|
+
|
480
|
+
<li class="r2 ">
|
387
481
|
<span class='object_link'><a href="AutoC/Code.html#priority-instance_method" title="AutoC::Code#priority (method)">#priority</a></span>
|
388
482
|
<small>AutoC::Code</small>
|
389
483
|
</li>
|
390
484
|
|
391
485
|
|
392
|
-
<li class="
|
486
|
+
<li class="r1 ">
|
393
487
|
<span class='object_link'><a href="AutoC.html#priority_sort-class_method" title="AutoC.priority_sort (method)">priority_sort</a></span>
|
394
488
|
<small>AutoC</small>
|
395
489
|
</li>
|
396
490
|
|
397
491
|
|
492
|
+
<li class="r2 ">
|
493
|
+
<span class='object_link'><a href="AutoC/Type.html#private%3F-instance_method" title="AutoC::Type#private? (method)">#private?</a></span>
|
494
|
+
<small>AutoC::Type</small>
|
495
|
+
</li>
|
496
|
+
|
497
|
+
|
398
498
|
<li class="r1 ">
|
499
|
+
<span class='object_link'><a href="AutoC/Type.html#public%3F-instance_method" title="AutoC::Type#public? (method)">#public?</a></span>
|
500
|
+
<small>AutoC::Type</small>
|
501
|
+
</li>
|
502
|
+
|
503
|
+
|
504
|
+
<li class="r2 ">
|
399
505
|
<span class='object_link'><a href="AutoC/Module/Source.html#size-instance_method" title="AutoC::Module::Source#size (method)">#size</a></span>
|
400
506
|
<small>AutoC::Module::Source</small>
|
401
507
|
</li>
|
402
508
|
|
403
509
|
|
404
|
-
<li class="
|
510
|
+
<li class="r1 ">
|
405
511
|
<span class='object_link'><a href="AutoC/Module/Source.html#smallest%3F-instance_method" title="AutoC::Module::Source#smallest? (method)">#smallest?</a></span>
|
406
512
|
<small>AutoC::Module::Source</small>
|
407
513
|
</li>
|
408
514
|
|
409
515
|
|
410
|
-
<li class="
|
516
|
+
<li class="r2 ">
|
411
517
|
<span class='object_link'><a href="AutoC/Module.html#smallest_source-instance_method" title="AutoC::Module#smallest_source (method)">#smallest_source</a></span>
|
412
518
|
<small>AutoC::Module</small>
|
413
519
|
</li>
|
414
520
|
|
415
521
|
|
416
|
-
<li class="
|
522
|
+
<li class="r1 ">
|
417
523
|
<span class='object_link'><a href="AutoC/Module.html#source_count-instance_method" title="AutoC::Module#source_count (method)">#source_count</a></span>
|
418
524
|
<small>AutoC::Module</small>
|
419
525
|
</li>
|
420
526
|
|
421
527
|
|
422
|
-
<li class="
|
528
|
+
<li class="r2 ">
|
423
529
|
<span class='object_link'><a href="AutoC/Module.html#source_count%3D-instance_method" title="AutoC::Module#source_count= (method)">#source_count=</a></span>
|
424
530
|
<small>AutoC::Module</small>
|
425
531
|
</li>
|
426
532
|
|
427
533
|
|
428
|
-
<li class="
|
534
|
+
<li class="r1 ">
|
429
535
|
<span class='object_link'><a href="AutoC/Code.html#source_size-instance_method" title="AutoC::Code#source_size (method)">#source_size</a></span>
|
430
536
|
<small>AutoC::Code</small>
|
431
537
|
</li>
|
432
538
|
|
433
539
|
|
434
|
-
<li class="
|
540
|
+
<li class="r2 ">
|
435
541
|
<span class='object_link'><a href="AutoC/Type.html#static-instance_method" title="AutoC::Type#static (method)">#static</a></span>
|
436
542
|
<small>AutoC::Type</small>
|
437
543
|
</li>
|
438
544
|
|
439
545
|
|
546
|
+
<li class="r1 ">
|
547
|
+
<span class='object_link'><a href="AutoC/Type.html#static%3F-instance_method" title="AutoC::Type#static? (method)">#static?</a></span>
|
548
|
+
<small>AutoC::Type</small>
|
549
|
+
</li>
|
550
|
+
|
551
|
+
|
440
552
|
<li class="r2 ">
|
441
553
|
<span class='object_link'><a href="AutoC/Type.html#type-instance_method" title="AutoC::Type#type (method)">#type</a></span>
|
442
554
|
<small>AutoC::Type</small>
|
@@ -444,8 +556,8 @@
|
|
444
556
|
|
445
557
|
|
446
558
|
<li class="r1 ">
|
447
|
-
<span class='object_link'><a href="AutoC/
|
448
|
-
<small>AutoC::
|
559
|
+
<span class='object_link'><a href="AutoC/Type.html#type_ref-instance_method" title="AutoC::Type#type_ref (method)">#type_ref</a></span>
|
560
|
+
<small>AutoC::Type</small>
|
449
561
|
</li>
|
450
562
|
|
451
563
|
|
@@ -456,8 +568,8 @@
|
|
456
568
|
|
457
569
|
|
458
570
|
<li class="r1 ">
|
459
|
-
<span class='object_link'><a href="AutoC/
|
460
|
-
<small>AutoC::
|
571
|
+
<span class='object_link'><a href="AutoC/Module/Header.html#write-instance_method" title="AutoC::Module::Header#write (method)">#write</a></span>
|
572
|
+
<small>AutoC::Module::Header</small>
|
461
573
|
</li>
|
462
574
|
|
463
575
|
|
@@ -468,8 +580,8 @@
|
|
468
580
|
|
469
581
|
|
470
582
|
<li class="r1 ">
|
471
|
-
<span class='object_link'><a href="AutoC/
|
472
|
-
<small>AutoC::
|
583
|
+
<span class='object_link'><a href="AutoC/Code.html#write_decls-instance_method" title="AutoC::Code#write_decls (method)">#write_decls</a></span>
|
584
|
+
<small>AutoC::Code</small>
|
473
585
|
</li>
|
474
586
|
|
475
587
|
|
@@ -480,122 +592,128 @@
|
|
480
592
|
|
481
593
|
|
482
594
|
<li class="r1 ">
|
483
|
-
<span class='object_link'><a href="AutoC/
|
484
|
-
<small>AutoC::
|
595
|
+
<span class='object_link'><a href="AutoC/Type.html#write_defs-instance_method" title="AutoC::Type#write_defs (method)">#write_defs</a></span>
|
596
|
+
<small>AutoC::Type</small>
|
485
597
|
</li>
|
486
598
|
|
487
599
|
|
488
600
|
<li class="r2 ">
|
489
|
-
<span class='object_link'><a href="AutoC/
|
490
|
-
<small>AutoC::
|
601
|
+
<span class='object_link'><a href="AutoC/List.html#write_impls-instance_method" title="AutoC::List#write_impls (method)">#write_impls</a></span>
|
602
|
+
<small>AutoC::List</small>
|
491
603
|
</li>
|
492
604
|
|
493
605
|
|
494
606
|
<li class="r1 ">
|
495
|
-
<span class='object_link'><a href="AutoC/
|
496
|
-
<small>AutoC::
|
607
|
+
<span class='object_link'><a href="AutoC/Queue.html#write_impls-instance_method" title="AutoC::Queue#write_impls (method)">#write_impls</a></span>
|
608
|
+
<small>AutoC::Queue</small>
|
497
609
|
</li>
|
498
610
|
|
499
611
|
|
500
612
|
<li class="r2 ">
|
501
|
-
<span class='object_link'><a href="AutoC/
|
502
|
-
<small>AutoC::
|
613
|
+
<span class='object_link'><a href="AutoC/Reference.html#write_impls-instance_method" title="AutoC::Reference#write_impls (method)">#write_impls</a></span>
|
614
|
+
<small>AutoC::Reference</small>
|
503
615
|
</li>
|
504
616
|
|
505
617
|
|
506
618
|
<li class="r1 ">
|
507
|
-
<span class='object_link'><a href="AutoC/
|
508
|
-
<small>AutoC::
|
619
|
+
<span class='object_link'><a href="AutoC/HashSet.html#write_impls-instance_method" title="AutoC::HashSet#write_impls (method)">#write_impls</a></span>
|
620
|
+
<small>AutoC::HashSet</small>
|
509
621
|
</li>
|
510
622
|
|
511
623
|
|
512
624
|
<li class="r2 ">
|
513
|
-
<span class='object_link'><a href="AutoC/
|
514
|
-
<small>AutoC::
|
625
|
+
<span class='object_link'><a href="AutoC/Vector.html#write_impls-instance_method" title="AutoC::Vector#write_impls (method)">#write_impls</a></span>
|
626
|
+
<small>AutoC::Vector</small>
|
515
627
|
</li>
|
516
628
|
|
517
629
|
|
518
630
|
<li class="r1 ">
|
519
|
-
<span class='object_link'><a href="AutoC/
|
520
|
-
<small>AutoC::
|
631
|
+
<span class='object_link'><a href="AutoC/HashMap.html#write_impls-instance_method" title="AutoC::HashMap#write_impls (method)">#write_impls</a></span>
|
632
|
+
<small>AutoC::HashMap</small>
|
521
633
|
</li>
|
522
634
|
|
523
635
|
|
524
636
|
<li class="r2 ">
|
525
|
-
<span class='object_link'><a href="AutoC/
|
526
|
-
<small>AutoC::
|
637
|
+
<span class='object_link'><a href="AutoC/Code.html#write_intf-instance_method" title="AutoC::Code#write_intf (method)">#write_intf</a></span>
|
638
|
+
<small>AutoC::Code</small>
|
527
639
|
</li>
|
528
640
|
|
529
641
|
|
530
642
|
<li class="r1 ">
|
531
|
-
<span class='object_link'><a href="AutoC/
|
532
|
-
<small>AutoC::
|
643
|
+
<span class='object_link'><a href="AutoC/Type.html#write_intf-instance_method" title="AutoC::Type#write_intf (method)">#write_intf</a></span>
|
644
|
+
<small>AutoC::Type</small>
|
533
645
|
</li>
|
534
646
|
|
535
647
|
|
536
648
|
<li class="r2 ">
|
537
|
-
<span class='object_link'><a href="AutoC/
|
538
|
-
<small>AutoC::
|
649
|
+
<span class='object_link'><a href="AutoC/Queue.html#write_intf_decls-instance_method" title="AutoC::Queue#write_intf_decls (method)">#write_intf_decls</a></span>
|
650
|
+
<small>AutoC::Queue</small>
|
539
651
|
</li>
|
540
652
|
|
541
653
|
|
542
654
|
<li class="r1 ">
|
543
|
-
<span class='object_link'><a href="AutoC/
|
544
|
-
<small>AutoC::
|
655
|
+
<span class='object_link'><a href="AutoC/HashMap.html#write_intf_decls-instance_method" title="AutoC::HashMap#write_intf_decls (method)">#write_intf_decls</a></span>
|
656
|
+
<small>AutoC::HashMap</small>
|
545
657
|
</li>
|
546
658
|
|
547
659
|
|
548
660
|
<li class="r2 ">
|
549
|
-
<span class='object_link'><a href="AutoC/Vector.html#
|
661
|
+
<span class='object_link'><a href="AutoC/Vector.html#write_intf_decls-instance_method" title="AutoC::Vector#write_intf_decls (method)">#write_intf_decls</a></span>
|
550
662
|
<small>AutoC::Vector</small>
|
551
663
|
</li>
|
552
664
|
|
553
665
|
|
554
666
|
<li class="r1 ">
|
555
|
-
<span class='object_link'><a href="AutoC/
|
556
|
-
<small>AutoC::
|
667
|
+
<span class='object_link'><a href="AutoC/Reference.html#write_intf_decls-instance_method" title="AutoC::Reference#write_intf_decls (method)">#write_intf_decls</a></span>
|
668
|
+
<small>AutoC::Reference</small>
|
557
669
|
</li>
|
558
670
|
|
559
671
|
|
560
672
|
<li class="r2 ">
|
561
|
-
<span class='object_link'><a href="AutoC/
|
562
|
-
<small>AutoC::
|
673
|
+
<span class='object_link'><a href="AutoC/List.html#write_intf_decls-instance_method" title="AutoC::List#write_intf_decls (method)">#write_intf_decls</a></span>
|
674
|
+
<small>AutoC::List</small>
|
563
675
|
</li>
|
564
676
|
|
565
677
|
|
566
678
|
<li class="r1 ">
|
567
|
-
<span class='object_link'><a href="AutoC/
|
568
|
-
<small>AutoC::
|
679
|
+
<span class='object_link'><a href="AutoC/HashSet.html#write_intf_decls-instance_method" title="AutoC::HashSet#write_intf_decls (method)">#write_intf_decls</a></span>
|
680
|
+
<small>AutoC::HashSet</small>
|
569
681
|
</li>
|
570
682
|
|
571
683
|
|
572
684
|
<li class="r2 ">
|
573
|
-
<span class='object_link'><a href="AutoC/
|
574
|
-
<small>AutoC::
|
685
|
+
<span class='object_link'><a href="AutoC/Collection.html#write_intf_decls-instance_method" title="AutoC::Collection#write_intf_decls (method)">#write_intf_decls</a></span>
|
686
|
+
<small>AutoC::Collection</small>
|
575
687
|
</li>
|
576
688
|
|
577
689
|
|
578
690
|
<li class="r1 ">
|
579
|
-
<span class='object_link'><a href="AutoC/
|
580
|
-
<small>AutoC::
|
691
|
+
<span class='object_link'><a href="AutoC/List.html#write_intf_types-instance_method" title="AutoC::List#write_intf_types (method)">#write_intf_types</a></span>
|
692
|
+
<small>AutoC::List</small>
|
581
693
|
</li>
|
582
694
|
|
583
695
|
|
584
696
|
<li class="r2 ">
|
585
|
-
<span class='object_link'><a href="AutoC/
|
586
|
-
<small>AutoC::
|
697
|
+
<span class='object_link'><a href="AutoC/Queue.html#write_intf_types-instance_method" title="AutoC::Queue#write_intf_types (method)">#write_intf_types</a></span>
|
698
|
+
<small>AutoC::Queue</small>
|
587
699
|
</li>
|
588
700
|
|
589
701
|
|
590
702
|
<li class="r1 ">
|
591
|
-
<span class='object_link'><a href="AutoC/
|
592
|
-
<small>AutoC::
|
703
|
+
<span class='object_link'><a href="AutoC/HashMap.html#write_intf_types-instance_method" title="AutoC::HashMap#write_intf_types (method)">#write_intf_types</a></span>
|
704
|
+
<small>AutoC::HashMap</small>
|
593
705
|
</li>
|
594
706
|
|
595
707
|
|
596
708
|
<li class="r2 ">
|
597
|
-
<span class='object_link'><a href="AutoC/
|
598
|
-
<small>AutoC::
|
709
|
+
<span class='object_link'><a href="AutoC/Vector.html#write_intf_types-instance_method" title="AutoC::Vector#write_intf_types (method)">#write_intf_types</a></span>
|
710
|
+
<small>AutoC::Vector</small>
|
711
|
+
</li>
|
712
|
+
|
713
|
+
|
714
|
+
<li class="r1 ">
|
715
|
+
<span class='object_link'><a href="AutoC/HashSet.html#write_intf_types-instance_method" title="AutoC::HashSet#write_intf_types (method)">#write_intf_types</a></span>
|
716
|
+
<small>AutoC::HashSet</small>
|
599
717
|
</li>
|
600
718
|
|
601
719
|
|