autoc 1.3 → 1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES +4 -0
  3. data/doc/AutoC.html +55 -55
  4. data/doc/AutoC/Code.html +60 -57
  5. data/doc/AutoC/Collection.html +134 -124
  6. data/doc/AutoC/HashMap.html +147 -185
  7. data/doc/AutoC/HashSet.html +114 -325
  8. data/doc/AutoC/Iterators.html +126 -0
  9. data/doc/AutoC/Iterators/Bidirectional.html +204 -0
  10. data/doc/AutoC/Iterators/Unidirectional.html +200 -0
  11. data/doc/AutoC/List.html +81 -76
  12. data/doc/AutoC/Maps.html +290 -0
  13. data/doc/AutoC/Module.html +72 -69
  14. data/doc/AutoC/Module/File.html +55 -52
  15. data/doc/AutoC/Module/Header.html +55 -52
  16. data/doc/AutoC/Module/Source.html +63 -60
  17. data/doc/AutoC/Priority.html +57 -57
  18. data/doc/AutoC/Queue.html +75 -74
  19. data/doc/AutoC/Reference.html +92 -91
  20. data/doc/AutoC/Sets.html +520 -0
  21. data/doc/AutoC/String.html +70 -69
  22. data/doc/AutoC/TreeMap.html +1565 -0
  23. data/doc/AutoC/TreeSet.html +1447 -0
  24. data/doc/AutoC/Type.html +184 -110
  25. data/doc/AutoC/UserDefinedType.html +102 -102
  26. data/doc/AutoC/Vector.html +100 -91
  27. data/doc/_index.html +97 -33
  28. data/doc/class_list.html +24 -31
  29. data/doc/css/full_list.css +32 -31
  30. data/doc/css/style.css +220 -78
  31. data/doc/file.CHANGES.html +37 -30
  32. data/doc/file.README.html +29 -30
  33. data/doc/file_list.html +29 -31
  34. data/doc/frames.html +7 -16
  35. data/doc/index.html +29 -30
  36. data/doc/js/app.js +100 -76
  37. data/doc/js/full_list.js +170 -135
  38. data/doc/method_list.html +877 -431
  39. data/doc/top-level-namespace.html +35 -35
  40. data/lib/autoc.rb +4 -2
  41. data/lib/autoc/collection.rb +10 -4
  42. data/lib/autoc/collection/hash_map.rb +22 -41
  43. data/lib/autoc/collection/hash_set.rb +13 -120
  44. data/lib/autoc/collection/iterator.rb +39 -0
  45. data/lib/autoc/collection/list.rb +7 -5
  46. data/lib/autoc/collection/map.rb +41 -0
  47. data/lib/autoc/collection/queue.rb +8 -8
  48. data/lib/autoc/collection/set.rb +134 -0
  49. data/lib/autoc/collection/tree_map.rb +464 -0
  50. data/lib/autoc/collection/tree_set.rb +611 -0
  51. data/lib/autoc/collection/vector.rb +8 -4
  52. data/lib/autoc/string.rb +1 -1
  53. data/lib/autoc/type.rb +3 -0
  54. data/test/test.rb +2 -2
  55. data/test/test_auto.c +7141 -0
  56. data/test/test_auto.h +753 -0
  57. data/test/test_int_tree_set.rb +111 -0
  58. data/test/test_value_hash_map.rb +1 -1
  59. data/test/test_value_hash_set.rb +1 -1
  60. data/test/test_value_tree_map.rb +176 -0
  61. data/test/test_value_tree_set.rb +173 -0
  62. metadata +21 -5
@@ -1,12 +1,12 @@
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">
1
+ <!DOCTYPE html>
2
+ <html>
4
3
  <head>
5
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
6
  <title>
7
7
  Class: AutoC::UserDefinedType
8
8
 
9
- &mdash; Documentation by YARD 0.8.7.6
9
+ &mdash; Documentation by YARD 0.9.5
10
10
 
11
11
  </title>
12
12
 
@@ -15,9 +15,8 @@
15
15
  <link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8" />
16
16
 
17
17
  <script type="text/javascript" charset="utf-8">
18
- hasFrames = window.top.frames.main ? true : false;
18
+ pathId = "AutoC::UserDefinedType";
19
19
  relpath = '../';
20
- framesUrl = "../frames.html#!AutoC/UserDefinedType.html";
21
20
  </script>
22
21
 
23
22
 
@@ -28,51 +27,50 @@
28
27
 
29
28
  </head>
30
29
  <body>
31
- <div id="header">
32
- <div id="menu">
30
+ <div class="nav_wrap">
31
+ <iframe id="nav" src="../class_list.html"></iframe>
32
+ <div id="resizer"></div>
33
+ </div>
34
+
35
+ <div id="main" tabindex="-1">
36
+ <div id="header">
37
+ <div id="menu">
33
38
 
34
39
  <a href="../_index.html">Index (U)</a> &raquo;
35
40
  <span class='title'><span class='object_link'><a href="../AutoC.html" title="AutoC (module)">AutoC</a></span></span>
36
41
  &raquo;
37
42
  <span class="title">UserDefinedType</span>
38
43
 
39
-
40
- <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
41
44
  </div>
42
45
 
43
- <div id="search">
46
+ <div id="search">
44
47
 
45
48
  <a class="full_list_link" id="class_list_link"
46
49
  href="../class_list.html">
47
- Class List
48
- </a>
49
-
50
- <a class="full_list_link" id="method_list_link"
51
- href="../method_list.html">
52
- Method List
53
- </a>
54
-
55
- <a class="full_list_link" id="file_list_link"
56
- href="../file_list.html">
57
- File List
50
+
51
+ <svg width="24" height="24">
52
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
53
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
54
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
55
+ </svg>
58
56
  </a>
59
57
 
60
58
  </div>
61
- <div class="clear"></div>
62
- </div>
59
+ <div class="clear"></div>
60
+ </div>
63
61
 
64
- <iframe id="search_frame"></iframe>
62
+ <iframe id="search_frame" src="../class_list.html"></iframe>
65
63
 
66
- <div id="content"><h1>Class: AutoC::UserDefinedType
64
+ <div id="content"><h1>Class: AutoC::UserDefinedType
67
65
 
68
66
 
69
67
 
70
68
  </h1>
71
-
72
- <dl class="box">
69
+ <div class="box_info">
73
70
 
74
- <dt class="r1">Inherits:</dt>
75
- <dd class="r1">
71
+ <dl>
72
+ <dt>Inherits:</dt>
73
+ <dd>
76
74
  <span class="inheritName"><span class='object_link'><a href="Type.html" title="AutoC::Type (class)">Type</a></span></span>
77
75
 
78
76
  <ul class="fullTree">
@@ -87,21 +85,25 @@
87
85
  </ul>
88
86
  <a href="#" class="inheritanceTree">show all</a>
89
87
 
90
- </dd>
91
-
88
+ </dd>
89
+ </dl>
92
90
 
91
+
93
92
 
94
-
95
93
 
96
-
97
94
 
98
95
 
99
96
 
100
- <dt class="r2 last">Defined in:</dt>
101
- <dd class="r2 last">lib/autoc/type.rb</dd>
97
+
102
98
 
103
- </dl>
104
- <div class="clear"></div>
99
+
100
+
101
+ <dl>
102
+ <dt>Defined in:</dt>
103
+ <dd>lib/autoc/type.rb</dd>
104
+ </dl>
105
+
106
+ </div>
105
107
 
106
108
  <h2>Overview</h2><div class="docstring">
107
109
  <div class="discussion">
@@ -115,9 +117,6 @@
115
117
 
116
118
 
117
119
  </div>
118
- <h2>Constant Summary</h2>
119
-
120
-
121
120
 
122
121
 
123
122
 
@@ -132,7 +131,7 @@
132
131
 
133
132
  <h2>
134
133
  Instance Method Summary
135
- <small>(<a href="#" class="summary_toggle">collapse</a>)</small>
134
+ <small><a href="#" class="summary_toggle">collapse</a></small>
136
135
  </h2>
137
136
 
138
137
  <ul class="summary">
@@ -140,7 +139,7 @@
140
139
  <li class="public ">
141
140
  <span class="summary_signature">
142
141
 
143
- <a href="#comparable%3F-instance_method" title="#comparable? (instance method)">- (Boolean) <strong>comparable?</strong> </a>
142
+ <a href="#comparable%3F-instance_method" title="#comparable? (instance method)">#<strong>comparable?</strong> &#x21d2; Boolean </a>
144
143
 
145
144
 
146
145
 
@@ -162,7 +161,7 @@
162
161
  <li class="public ">
163
162
  <span class="summary_signature">
164
163
 
165
- <a href="#constructible%3F-instance_method" title="#constructible? (instance method)">- (Boolean) <strong>constructible?</strong> </a>
164
+ <a href="#constructible%3F-instance_method" title="#constructible? (instance method)">#<strong>constructible?</strong> &#x21d2; Boolean </a>
166
165
 
167
166
 
168
167
 
@@ -184,7 +183,7 @@
184
183
  <li class="public ">
185
184
  <span class="summary_signature">
186
185
 
187
- <a href="#copyable%3F-instance_method" title="#copyable? (instance method)">- (Boolean) <strong>copyable?</strong> </a>
186
+ <a href="#copyable%3F-instance_method" title="#copyable? (instance method)">#<strong>copyable?</strong> &#x21d2; Boolean </a>
188
187
 
189
188
 
190
189
 
@@ -206,7 +205,7 @@
206
205
  <li class="public ">
207
206
  <span class="summary_signature">
208
207
 
209
- <a href="#destructible%3F-instance_method" title="#destructible? (instance method)">- (Boolean) <strong>destructible?</strong> </a>
208
+ <a href="#destructible%3F-instance_method" title="#destructible? (instance method)">#<strong>destructible?</strong> &#x21d2; Boolean </a>
210
209
 
211
210
 
212
211
 
@@ -228,7 +227,7 @@
228
227
  <li class="public ">
229
228
  <span class="summary_signature">
230
229
 
231
- <a href="#entities-instance_method" title="#entities (instance method)">- (Object) <strong>entities</strong> </a>
230
+ <a href="#entities-instance_method" title="#entities (instance method)">#<strong>entities</strong> &#x21d2; Object </a>
232
231
 
233
232
 
234
233
 
@@ -252,7 +251,7 @@
252
251
  <li class="public ">
253
252
  <span class="summary_signature">
254
253
 
255
- <a href="#hashable%3F-instance_method" title="#hashable? (instance method)">- (Boolean) <strong>hashable?</strong> </a>
254
+ <a href="#hashable%3F-instance_method" title="#hashable? (instance method)">#<strong>hashable?</strong> &#x21d2; Boolean </a>
256
255
 
257
256
 
258
257
 
@@ -274,7 +273,7 @@
274
273
  <li class="public ">
275
274
  <span class="summary_signature">
276
275
 
277
- <a href="#initializable%3F-instance_method" title="#initializable? (instance method)">- (Boolean) <strong>initializable?</strong> </a>
276
+ <a href="#initializable%3F-instance_method" title="#initializable? (instance method)">#<strong>initializable?</strong> &#x21d2; Boolean </a>
278
277
 
279
278
 
280
279
 
@@ -296,7 +295,7 @@
296
295
  <li class="public ">
297
296
  <span class="summary_signature">
298
297
 
299
- <a href="#initialize-instance_method" title="#initialize (instance method)">- (UserDefinedType) <strong>initialize</strong>(opt) </a>
298
+ <a href="#initialize-instance_method" title="#initialize (instance method)">#<strong>initialize</strong>(opt) &#x21d2; UserDefinedType </a>
300
299
 
301
300
 
302
301
 
@@ -322,7 +321,7 @@
322
321
  <li class="public ">
323
322
  <span class="summary_signature">
324
323
 
325
- <a href="#orderable%3F-instance_method" title="#orderable? (instance method)">- (Boolean) <strong>orderable?</strong> </a>
324
+ <a href="#orderable%3F-instance_method" title="#orderable? (instance method)">#<strong>orderable?</strong> &#x21d2; Boolean </a>
326
325
 
327
326
 
328
327
 
@@ -344,7 +343,7 @@
344
343
  <li class="public ">
345
344
  <span class="summary_signature">
346
345
 
347
- <a href="#prefix-instance_method" title="#prefix (instance method)">- (Object) <strong>prefix</strong> </a>
346
+ <a href="#prefix-instance_method" title="#prefix (instance method)">#<strong>prefix</strong> &#x21d2; Object </a>
348
347
 
349
348
 
350
349
 
@@ -366,7 +365,7 @@
366
365
  <li class="public ">
367
366
  <span class="summary_signature">
368
367
 
369
- <a href="#write_impls-instance_method" title="#write_impls (instance method)">- (Object) <strong>write_impls</strong>(stream, define) </a>
368
+ <a href="#write_impls-instance_method" title="#write_impls (instance method)">#<strong>write_impls</strong>(stream, define) &#x21d2; Object </a>
370
369
 
371
370
 
372
371
 
@@ -388,7 +387,7 @@
388
387
  <li class="public ">
389
388
  <span class="summary_signature">
390
389
 
391
- <a href="#write_intf_decls-instance_method" title="#write_intf_decls (instance method)">- (Object) <strong>write_intf_decls</strong>(stream, declare, define) </a>
390
+ <a href="#write_intf_decls-instance_method" title="#write_intf_decls (instance method)">#<strong>write_intf_decls</strong>(stream, declare, define) &#x21d2; Object </a>
392
391
 
393
392
 
394
393
 
@@ -410,7 +409,7 @@
410
409
  <li class="public ">
411
410
  <span class="summary_signature">
412
411
 
413
- <a href="#write_intf_types-instance_method" title="#write_intf_types (instance method)">- (Object) <strong>write_intf_types</strong>(stream) </a>
412
+ <a href="#write_intf_types-instance_method" title="#write_intf_types (instance method)">#<strong>write_intf_types</strong>(stream) &#x21d2; Object </a>
414
413
 
415
414
 
416
415
 
@@ -444,7 +443,7 @@
444
443
 
445
444
 
446
445
  <h3 class="inherited">Methods inherited from <span class='object_link'><a href="Type.html" title="AutoC::Type (class)">Type</a></span></h3>
447
- <p class="inherited"><span class='object_link'><a href="Type.html#%3D%3D-instance_method" title="AutoC::Type#== (method)">#==</a></span>, <span class='object_link'><a href="Type.html#abort-instance_method" title="AutoC::Type#abort (method)">#abort</a></span>, <span class='object_link'><a href="Type.html#assert-instance_method" title="AutoC::Type#assert (method)">#assert</a></span>, <span class='object_link'><a href="Type.html#calloc-instance_method" title="AutoC::Type#calloc (method)">#calloc</a></span>, <span class='object_link'><a href="Type.html#coerce-class_method" title="AutoC::Type.coerce (method)">coerce</a></span>, <span class='object_link'><a href="Type.html#extern-instance_method" title="AutoC::Type#extern (method)">#extern</a></span>, <span class='object_link'><a href="Type.html#free-instance_method" title="AutoC::Type#free (method)">#free</a></span>, <span class='object_link'><a href="Type.html#hash-instance_method" title="AutoC::Type#hash (method)">#hash</a></span>, <span class='object_link'><a href="Type.html#inline-instance_method" title="AutoC::Type#inline (method)">#inline</a></span>, <span class='object_link'><a href="Type.html#malloc-instance_method" title="AutoC::Type#malloc (method)">#malloc</a></span>, <span class='object_link'><a href="Type.html#method_missing-instance_method" title="AutoC::Type#method_missing (method)">#method_missing</a></span>, <span class='object_link'><a href="Type.html#private%3F-instance_method" title="AutoC::Type#private? (method)">#private?</a></span>, <span class='object_link'><a href="Type.html#public%3F-instance_method" title="AutoC::Type#public? (method)">#public?</a></span>, <span class='object_link'><a href="Type.html#static-instance_method" title="AutoC::Type#static (method)">#static</a></span>, <span class='object_link'><a href="Type.html#static%3F-instance_method" title="AutoC::Type#static? (method)">#static?</a></span>, <span class='object_link'><a href="Type.html#write_decls-instance_method" title="AutoC::Type#write_decls (method)">#write_decls</a></span>, <span class='object_link'><a href="Type.html#write_defs-instance_method" title="AutoC::Type#write_defs (method)">#write_defs</a></span>, <span class='object_link'><a href="Type.html#write_intf-instance_method" title="AutoC::Type#write_intf (method)">#write_intf</a></span></p>
446
+ <p class="inherited"><span class='object_link'><a href="Type.html#%3D%3D-instance_method" title="AutoC::Type#== (method)">#==</a></span>, <span class='object_link'><a href="Type.html#abort-instance_method" title="AutoC::Type#abort (method)">#abort</a></span>, <span class='object_link'><a href="Type.html#assert-instance_method" title="AutoC::Type#assert (method)">#assert</a></span>, <span class='object_link'><a href="Type.html#calloc-instance_method" title="AutoC::Type#calloc (method)">#calloc</a></span>, <span class='object_link'><a href="Type.html#coerce-class_method" title="AutoC::Type.coerce (method)">coerce</a></span>, <span class='object_link'><a href="Type.html#extern-instance_method" title="AutoC::Type#extern (method)">#extern</a></span>, <span class='object_link'><a href="Type.html#free-instance_method" title="AutoC::Type#free (method)">#free</a></span>, <span class='object_link'><a href="Type.html#hash-instance_method" title="AutoC::Type#hash (method)">#hash</a></span>, <span class='object_link'><a href="Type.html#inline-instance_method" title="AutoC::Type#inline (method)">#inline</a></span>, <span class='object_link'><a href="Type.html#malloc-instance_method" title="AutoC::Type#malloc (method)">#malloc</a></span>, <span class='object_link'><a href="Type.html#method_missing-instance_method" title="AutoC::Type#method_missing (method)">#method_missing</a></span>, <span class='object_link'><a href="Type.html#private%3F-instance_method" title="AutoC::Type#private? (method)">#private?</a></span>, <span class='object_link'><a href="Type.html#public%3F-instance_method" title="AutoC::Type#public? (method)">#public?</a></span>, <span class='object_link'><a href="Type.html#sortable%3F-instance_method" title="AutoC::Type#sortable? (method)">#sortable?</a></span>, <span class='object_link'><a href="Type.html#static-instance_method" title="AutoC::Type#static (method)">#static</a></span>, <span class='object_link'><a href="Type.html#static%3F-instance_method" title="AutoC::Type#static? (method)">#static?</a></span>, <span class='object_link'><a href="Type.html#write_decls-instance_method" title="AutoC::Type#write_decls (method)">#write_decls</a></span>, <span class='object_link'><a href="Type.html#write_defs-instance_method" title="AutoC::Type#write_defs (method)">#write_defs</a></span>, <span class='object_link'><a href="Type.html#write_intf-instance_method" title="AutoC::Type#write_intf (method)">#write_intf</a></span></p>
448
447
 
449
448
 
450
449
 
@@ -462,7 +461,7 @@
462
461
  <div class="method_details first">
463
462
  <h3 class="signature first" id="initialize-instance_method">
464
463
 
465
- - (<tt><span class='object_link'><a href="" title="AutoC::UserDefinedType (class)">UserDefinedType</a></span></tt>) <strong>initialize</strong>(opt)
464
+ #<strong>initialize</strong>(opt) &#x21d2; <tt><span class='object_link'><a href="" title="AutoC::UserDefinedType (class)">UserDefinedType</a></span></tt>
466
465
 
467
466
 
468
467
 
@@ -485,9 +484,6 @@
485
484
  <pre class="lines">
486
485
 
487
486
 
488
- 318
489
- 319
490
- 320
491
487
  321
492
488
  322
493
489
  323
@@ -501,10 +497,13 @@
501
497
  331
502
498
  332
503
499
  333
504
- 334</pre>
500
+ 334
501
+ 335
502
+ 336
503
+ 337</pre>
505
504
  </td>
506
505
  <td>
507
- <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 318</span>
506
+ <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 321</span>
508
507
 
509
508
  <span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='lparen'>(</span><span class='id identifier rubyid_opt'>opt</span><span class='rparen'>)</span>
510
509
  <span class='id identifier rubyid_opt'>opt</span> <span class='op'>=</span> <span class='lbrace'>{</span><span class='symbol'>:type</span> <span class='op'>=&gt;</span> <span class='id identifier rubyid_opt'>opt</span><span class='rbrace'>}</span> <span class='kw'>if</span> <span class='id identifier rubyid_opt'>opt</span><span class='period'>.</span><span class='id identifier rubyid_is_a?'>is_a?</span><span class='lparen'>(</span><span class='op'>::</span><span class='const'>Symbol</span><span class='rparen'>)</span> <span class='op'>||</span> <span class='id identifier rubyid_opt'>opt</span><span class='period'>.</span><span class='id identifier rubyid_is_a?'>is_a?</span><span class='lparen'>(</span><span class='op'>::</span><span class='const'>String</span><span class='rparen'>)</span>
@@ -548,7 +547,7 @@
548
547
  <div class="method_details first">
549
548
  <h3 class="signature first" id="comparable?-instance_method">
550
549
 
551
- - (<tt>Boolean</tt>) <strong>comparable?</strong>
550
+ #<strong>comparable?</strong> &#x21d2; <tt>Boolean</tt>
552
551
 
553
552
 
554
553
 
@@ -582,10 +581,10 @@
582
581
  <pre class="lines">
583
582
 
584
583
 
585
- 344</pre>
584
+ 347</pre>
586
585
  </td>
587
586
  <td>
588
- <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 344</span>
587
+ <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 347</span>
589
588
 
590
589
  <span class='kw'>def</span> <span class='id identifier rubyid_comparable?'>comparable?</span><span class='semicolon'>;</span> <span class='op'>!</span><span class='ivar'>@equal</span><span class='period'>.</span><span class='id identifier rubyid_nil?'>nil?</span> <span class='kw'>end</span></pre>
591
590
  </td>
@@ -596,7 +595,7 @@
596
595
  <div class="method_details ">
597
596
  <h3 class="signature " id="constructible?-instance_method">
598
597
 
599
- - (<tt>Boolean</tt>) <strong>constructible?</strong>
598
+ #<strong>constructible?</strong> &#x21d2; <tt>Boolean</tt>
600
599
 
601
600
 
602
601
 
@@ -630,10 +629,10 @@
630
629
  <pre class="lines">
631
630
 
632
631
 
633
- 336</pre>
632
+ 339</pre>
634
633
  </td>
635
634
  <td>
636
- <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 336</span>
635
+ <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 339</span>
637
636
 
638
637
  <span class='kw'>def</span> <span class='id identifier rubyid_constructible?'>constructible?</span><span class='semicolon'>;</span> <span class='op'>!</span><span class='ivar'>@ctor</span><span class='period'>.</span><span class='id identifier rubyid_nil?'>nil?</span> <span class='op'>&amp;&amp;</span> <span class='ivar'>@ctor</span><span class='period'>.</span><span class='id identifier rubyid_parameters'>parameters</span><span class='period'>.</span><span class='id identifier rubyid_size'>size</span> <span class='op'>==</span> <span class='int'>1</span> <span class='kw'>end</span></pre>
639
638
  </td>
@@ -644,7 +643,7 @@
644
643
  <div class="method_details ">
645
644
  <h3 class="signature " id="copyable?-instance_method">
646
645
 
647
- - (<tt>Boolean</tt>) <strong>copyable?</strong>
646
+ #<strong>copyable?</strong> &#x21d2; <tt>Boolean</tt>
648
647
 
649
648
 
650
649
 
@@ -678,10 +677,10 @@
678
677
  <pre class="lines">
679
678
 
680
679
 
681
- 342</pre>
680
+ 345</pre>
682
681
  </td>
683
682
  <td>
684
- <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 342</span>
683
+ <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 345</span>
685
684
 
686
685
  <span class='kw'>def</span> <span class='id identifier rubyid_copyable?'>copyable?</span><span class='semicolon'>;</span> <span class='op'>!</span><span class='ivar'>@copy</span><span class='period'>.</span><span class='id identifier rubyid_nil?'>nil?</span> <span class='kw'>end</span></pre>
687
686
  </td>
@@ -692,7 +691,7 @@
692
691
  <div class="method_details ">
693
692
  <h3 class="signature " id="destructible?-instance_method">
694
693
 
695
- - (<tt>Boolean</tt>) <strong>destructible?</strong>
694
+ #<strong>destructible?</strong> &#x21d2; <tt>Boolean</tt>
696
695
 
697
696
 
698
697
 
@@ -726,10 +725,10 @@
726
725
  <pre class="lines">
727
726
 
728
727
 
729
- 340</pre>
728
+ 343</pre>
730
729
  </td>
731
730
  <td>
732
- <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 340</span>
731
+ <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 343</span>
733
732
 
734
733
  <span class='kw'>def</span> <span class='id identifier rubyid_destructible?'>destructible?</span><span class='semicolon'>;</span> <span class='op'>!</span><span class='ivar'>@dtor</span><span class='period'>.</span><span class='id identifier rubyid_nil?'>nil?</span> <span class='kw'>end</span></pre>
735
734
  </td>
@@ -740,7 +739,7 @@
740
739
  <div class="method_details ">
741
740
  <h3 class="signature " id="entities-instance_method">
742
741
 
743
- - (<tt>Object</tt>) <strong>entities</strong>
742
+ #<strong>entities</strong> &#x21d2; <tt>Object</tt>
744
743
 
745
744
 
746
745
 
@@ -763,10 +762,10 @@
763
762
  <pre class="lines">
764
763
 
765
764
 
766
- 314</pre>
765
+ 317</pre>
767
766
  </td>
768
767
  <td>
769
- <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 314</span>
768
+ <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 317</span>
770
769
 
771
770
  <span class='kw'>def</span> <span class='id identifier rubyid_entities'>entities</span><span class='semicolon'>;</span> <span class='kw'>super</span><span class='period'>.</span><span class='id identifier rubyid_concat'>concat</span><span class='lparen'>(</span><span class='ivar'>@deps</span><span class='rparen'>)</span> <span class='kw'>end</span></pre>
772
771
  </td>
@@ -777,7 +776,7 @@
777
776
  <div class="method_details ">
778
777
  <h3 class="signature " id="hashable?-instance_method">
779
778
 
780
- - (<tt>Boolean</tt>) <strong>hashable?</strong>
779
+ #<strong>hashable?</strong> &#x21d2; <tt>Boolean</tt>
781
780
 
782
781
 
783
782
 
@@ -811,10 +810,10 @@
811
810
  <pre class="lines">
812
811
 
813
812
 
814
- 348</pre>
813
+ 351</pre>
815
814
  </td>
816
815
  <td>
817
- <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 348</span>
816
+ <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 351</span>
818
817
 
819
818
  <span class='kw'>def</span> <span class='id identifier rubyid_hashable?'>hashable?</span><span class='semicolon'>;</span> <span class='op'>!</span><span class='ivar'>@identify</span><span class='period'>.</span><span class='id identifier rubyid_nil?'>nil?</span> <span class='kw'>end</span></pre>
820
819
  </td>
@@ -825,7 +824,7 @@
825
824
  <div class="method_details ">
826
825
  <h3 class="signature " id="initializable?-instance_method">
827
826
 
828
- - (<tt>Boolean</tt>) <strong>initializable?</strong>
827
+ #<strong>initializable?</strong> &#x21d2; <tt>Boolean</tt>
829
828
 
830
829
 
831
830
 
@@ -859,10 +858,10 @@
859
858
  <pre class="lines">
860
859
 
861
860
 
862
- 338</pre>
861
+ 341</pre>
863
862
  </td>
864
863
  <td>
865
- <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 338</span>
864
+ <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 341</span>
866
865
 
867
866
  <span class='kw'>def</span> <span class='id identifier rubyid_initializable?'>initializable?</span><span class='semicolon'>;</span> <span class='op'>!</span><span class='ivar'>@ctor</span><span class='period'>.</span><span class='id identifier rubyid_nil?'>nil?</span> <span class='kw'>end</span></pre>
868
867
  </td>
@@ -873,7 +872,7 @@
873
872
  <div class="method_details ">
874
873
  <h3 class="signature " id="orderable?-instance_method">
875
874
 
876
- - (<tt>Boolean</tt>) <strong>orderable?</strong>
875
+ #<strong>orderable?</strong> &#x21d2; <tt>Boolean</tt>
877
876
 
878
877
 
879
878
 
@@ -907,10 +906,10 @@
907
906
  <pre class="lines">
908
907
 
909
908
 
910
- 346</pre>
909
+ 349</pre>
911
910
  </td>
912
911
  <td>
913
- <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 346</span>
912
+ <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 349</span>
914
913
 
915
914
  <span class='kw'>def</span> <span class='id identifier rubyid_orderable?'>orderable?</span><span class='semicolon'>;</span> <span class='op'>!</span><span class='ivar'>@less</span><span class='period'>.</span><span class='id identifier rubyid_nil?'>nil?</span> <span class='kw'>end</span></pre>
916
915
  </td>
@@ -921,7 +920,7 @@
921
920
  <div class="method_details ">
922
921
  <h3 class="signature " id="prefix-instance_method">
923
922
 
924
- - (<tt>Object</tt>) <strong>prefix</strong>
923
+ #<strong>prefix</strong> &#x21d2; <tt>Object</tt>
925
924
 
926
925
 
927
926
 
@@ -933,10 +932,10 @@
933
932
  <pre class="lines">
934
933
 
935
934
 
936
- 316</pre>
935
+ 319</pre>
937
936
  </td>
938
937
  <td>
939
- <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 316</span>
938
+ <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 319</span>
940
939
 
941
940
  <span class='kw'>def</span> <span class='id identifier rubyid_prefix'>prefix</span><span class='semicolon'>;</span> <span class='ivar'>@prefix</span><span class='period'>.</span><span class='id identifier rubyid_nil?'>nil?</span> <span class='op'>?</span> <span class='kw'>super</span> <span class='op'>:</span> <span class='ivar'>@prefix</span> <span class='kw'>end</span></pre>
942
941
  </td>
@@ -947,7 +946,7 @@
947
946
  <div class="method_details ">
948
947
  <h3 class="signature " id="write_impls-instance_method">
949
948
 
950
- - (<tt>Object</tt>) <strong>write_impls</strong>(stream, define)
949
+ #<strong>write_impls</strong>(stream, define) &#x21d2; <tt>Object</tt>
951
950
 
952
951
 
953
952
 
@@ -959,10 +958,10 @@
959
958
  <pre class="lines">
960
959
 
961
960
 
962
- 356</pre>
961
+ 359</pre>
963
962
  </td>
964
963
  <td>
965
- <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 356</span>
964
+ <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 359</span>
966
965
 
967
966
  <span class='kw'>def</span> <span class='id identifier rubyid_write_impls'>write_impls</span><span class='lparen'>(</span><span class='id identifier rubyid_stream'>stream</span><span class='comma'>,</span> <span class='id identifier rubyid_define'>define</span><span class='rparen'>)</span> <span class='kw'>end</span></pre>
968
967
  </td>
@@ -973,7 +972,7 @@
973
972
  <div class="method_details ">
974
973
  <h3 class="signature " id="write_intf_decls-instance_method">
975
974
 
976
- - (<tt>Object</tt>) <strong>write_intf_decls</strong>(stream, declare, define)
975
+ #<strong>write_intf_decls</strong>(stream, declare, define) &#x21d2; <tt>Object</tt>
977
976
 
978
977
 
979
978
 
@@ -985,10 +984,10 @@
985
984
  <pre class="lines">
986
985
 
987
986
 
988
- 354</pre>
987
+ 357</pre>
989
988
  </td>
990
989
  <td>
991
- <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 354</span>
990
+ <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 357</span>
992
991
 
993
992
  <span class='kw'>def</span> <span class='id identifier rubyid_write_intf_decls'>write_intf_decls</span><span class='lparen'>(</span><span class='id identifier rubyid_stream'>stream</span><span class='comma'>,</span> <span class='id identifier rubyid_declare'>declare</span><span class='comma'>,</span> <span class='id identifier rubyid_define'>define</span><span class='rparen'>)</span> <span class='kw'>end</span></pre>
994
993
  </td>
@@ -999,7 +998,7 @@
999
998
  <div class="method_details ">
1000
999
  <h3 class="signature " id="write_intf_types-instance_method">
1001
1000
 
1002
- - (<tt>Object</tt>) <strong>write_intf_types</strong>(stream)
1001
+ #<strong>write_intf_types</strong>(stream) &#x21d2; <tt>Object</tt>
1003
1002
 
1004
1003
 
1005
1004
 
@@ -1022,10 +1021,10 @@
1022
1021
  <pre class="lines">
1023
1022
 
1024
1023
 
1025
- 352</pre>
1024
+ 355</pre>
1026
1025
  </td>
1027
1026
  <td>
1028
- <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 352</span>
1027
+ <pre class="code"><span class="info file"># File 'lib/autoc/type.rb', line 355</span>
1029
1028
 
1030
1029
  <span class='kw'>def</span> <span class='id identifier rubyid_write_intf_types'>write_intf_types</span><span class='lparen'>(</span><span class='id identifier rubyid_stream'>stream</span><span class='rparen'>)</span> <span class='kw'>end</span></pre>
1031
1030
  </td>
@@ -1037,11 +1036,12 @@
1037
1036
 
1038
1037
  </div>
1039
1038
 
1040
- <div id="footer">
1041
- Generated on Thu Mar 17 13:32:50 2016 by
1039
+ <div id="footer">
1040
+ Generated on Wed Oct 12 12:27:11 2016 by
1042
1041
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1043
- 0.8.7.6 (ruby-2.2.4).
1042
+ 0.9.5 (ruby-2.3.1).
1044
1043
  </div>
1045
1044
 
1045
+ </div>
1046
1046
  </body>
1047
1047
  </html>