autoc 1.3 → 1.4

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.
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
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 833384d60d6e76119c4a60af7422cb309ab1de85
4
- data.tar.gz: 48a857681b27ed6f43cd699d68aa2dc5dec9745e
3
+ metadata.gz: cc85e9cdc08a443fcc50ad0c86c681b205b47057
4
+ data.tar.gz: d0a444d8b827b87478e1d26dbb70a2b3c27c09be
5
5
  SHA512:
6
- metadata.gz: 202f01b392c46f2246417502ec713d56e93d296d3d3034e0a1a381a0e1af6573cd09b0cead67814fd0aad7701f58ccfd6342b7dec02b0f05ea3232829b72bc37
7
- data.tar.gz: 4450861b0a93da64d9058ccf186af04520892680c771ade10f3131f23813cf2a4db052c32fb467b90140e24d33493e86b44079c0dcc7d018f4447c526ec13f73
6
+ metadata.gz: f39cbdc42cb01f0fda4878fb755c9db3d9276976dfaa4822fa27b5bff02febb3e07a38d27a398beac07341de1de4f851e9bb42157fef8542fe8586bb1bb94ee1
7
+ data.tar.gz: 7934c79a433127ed3396ee6170bbfd30a3a47579180fd0eb9d52a93f6d4a125b0e59b7d4d5552c68ec4d685c83c3b27fffa4a4e34db50ba394a5b190797d0cb4
data/CHANGES CHANGED
@@ -1,3 +1,7 @@
1
+ == 1.4
2
+
3
+ Introduced AutoC::TreeSet and AutoC::TreeMap binary tree based containers.
4
+
1
5
  == 1.3
2
6
 
3
7
  Introduced AutoC::String string type.
@@ -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
  Module: AutoC
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";
19
19
  relpath = '';
20
- framesUrl = "frames.html#!AutoC.html";
21
20
  </script>
22
21
 
23
22
 
@@ -28,63 +27,65 @@
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 (A)</a> &raquo;
35
40
 
36
41
 
37
42
  <span class="title">AutoC</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>Module: AutoC
64
+ <div id="content"><h1>Module: AutoC
67
65
 
68
66
 
69
67
 
70
68
  </h1>
69
+ <div class="box_info">
70
+
71
71
 
72
- <dl class="box">
73
72
 
74
73
 
75
-
76
74
 
77
-
78
75
 
79
76
 
77
+
78
+
79
+
80
80
 
81
- <dt class="r1 last">Defined in:</dt>
82
- <dd class="r1 last">lib/autoc.rb<span class="defines">,<br />
83
- lib/autoc/type.rb,<br /> lib/autoc/code.rb,<br /> lib/autoc/string.rb,<br /> lib/autoc/collection.rb,<br /> lib/autoc/collection/list.rb,<br /> lib/autoc/collection/queue.rb,<br /> lib/autoc/collection/vector.rb,<br /> lib/autoc/collection/hash_map.rb,<br /> lib/autoc/collection/hash_set.rb</span>
81
+ <dl>
82
+ <dt>Defined in:</dt>
83
+ <dd>lib/autoc.rb<span class="defines">,<br />
84
+ lib/autoc/code.rb,<br /> lib/autoc/type.rb,<br /> lib/autoc/string.rb,<br /> lib/autoc/collection.rb,<br /> lib/autoc/collection/map.rb,<br /> lib/autoc/collection/set.rb,<br /> lib/autoc/collection/list.rb,<br /> lib/autoc/collection/queue.rb,<br /> lib/autoc/collection/vector.rb,<br /> lib/autoc/collection/hash_map.rb,<br /> lib/autoc/collection/tree_map.rb,<br /> lib/autoc/collection/tree_set.rb,<br /> lib/autoc/collection/iterator.rb,<br /> lib/autoc/collection/hash_set.rb</span>
84
85
  </dd>
86
+ </dl>
85
87
 
86
- </dl>
87
- <div class="clear"></div>
88
+ </div>
88
89
 
89
90
  <h2>Overview</h2><div class="docstring">
90
91
  <div class="discussion">
@@ -134,26 +135,24 @@ Should the major incompatible changes be made, the new release 2.0 will be intro
134
135
  <p class="children">
135
136
 
136
137
 
137
- <strong class="modules">Modules:</strong> <span class='object_link'><a href="AutoC/Priority.html" title="AutoC::Priority (module)">Priority</a></span>
138
+ <strong class="modules">Modules:</strong> <span class='object_link'><a href="AutoC/Iterators.html" title="AutoC::Iterators (module)">Iterators</a></span>, <span class='object_link'><a href="AutoC/Maps.html" title="AutoC::Maps (module)">Maps</a></span>, <span class='object_link'><a href="AutoC/Priority.html" title="AutoC::Priority (module)">Priority</a></span>, <span class='object_link'><a href="AutoC/Sets.html" title="AutoC::Sets (module)">Sets</a></span>
138
139
 
139
140
 
140
141
 
141
- <strong class="classes">Classes:</strong> <span class='object_link'><a href="AutoC/Code.html" title="AutoC::Code (class)">Code</a></span>, <span class='object_link'><a href="AutoC/Collection.html" title="AutoC::Collection (class)">Collection</a></span>, <span class='object_link'><a href="AutoC/HashMap.html" title="AutoC::HashMap (class)">HashMap</a></span>, <span class='object_link'><a href="AutoC/HashSet.html" title="AutoC::HashSet (class)">HashSet</a></span>, <span class='object_link'><a href="AutoC/List.html" title="AutoC::List (class)">List</a></span>, <span class='object_link'><a href="AutoC/Module.html" title="AutoC::Module (class)">Module</a></span>, <span class='object_link'><a href="AutoC/Queue.html" title="AutoC::Queue (class)">Queue</a></span>, <span class='object_link'><a href="AutoC/Reference.html" title="AutoC::Reference (class)">Reference</a></span>, <span class='object_link'><a href="AutoC/String.html" title="AutoC::String (class)">String</a></span>, <span class='object_link'><a href="AutoC/Type.html" title="AutoC::Type (class)">Type</a></span>, <span class='object_link'><a href="AutoC/UserDefinedType.html" title="AutoC::UserDefinedType (class)">UserDefinedType</a></span>, <span class='object_link'><a href="AutoC/Vector.html" title="AutoC::Vector (class)">Vector</a></span>
142
+ <strong class="classes">Classes:</strong> <span class='object_link'><a href="AutoC/Code.html" title="AutoC::Code (class)">Code</a></span>, <span class='object_link'><a href="AutoC/Collection.html" title="AutoC::Collection (class)">Collection</a></span>, <span class='object_link'><a href="AutoC/HashMap.html" title="AutoC::HashMap (class)">HashMap</a></span>, <span class='object_link'><a href="AutoC/HashSet.html" title="AutoC::HashSet (class)">HashSet</a></span>, <span class='object_link'><a href="AutoC/List.html" title="AutoC::List (class)">List</a></span>, <span class='object_link'><a href="AutoC/Module.html" title="AutoC::Module (class)">Module</a></span>, <span class='object_link'><a href="AutoC/Queue.html" title="AutoC::Queue (class)">Queue</a></span>, <span class='object_link'><a href="AutoC/Reference.html" title="AutoC::Reference (class)">Reference</a></span>, <span class='object_link'><a href="AutoC/String.html" title="AutoC::String (class)">String</a></span>, <span class='object_link'><a href="AutoC/TreeMap.html" title="AutoC::TreeMap (class)">TreeMap</a></span>, <span class='object_link'><a href="AutoC/TreeSet.html" title="AutoC::TreeSet (class)">TreeSet</a></span>, <span class='object_link'><a href="AutoC/Type.html" title="AutoC::Type (class)">Type</a></span>, <span class='object_link'><a href="AutoC/UserDefinedType.html" title="AutoC::UserDefinedType (class)">UserDefinedType</a></span>, <span class='object_link'><a href="AutoC/Vector.html" title="AutoC::Vector (class)">Vector</a></span>
142
143
 
143
144
 
144
145
  </p>
145
146
 
146
147
  <h2>Constant Summary</h2>
147
-
148
- <dl class="constants">
149
-
150
- <dt id="VERSION-constant" class="">VERSION =
151
-
152
- </dt>
153
- <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>1.3</span><span class='tstring_end'>&quot;</span></span></pre></dd>
154
-
155
- </dl>
156
-
148
+ <dl class="constants">
149
+
150
+ <dt id="VERSION-constant" class="">VERSION =
151
+
152
+ </dt>
153
+ <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>1.4</span><span class='tstring_end'>&quot;</span></span></pre></dd>
154
+
155
+ </dl>
157
156
 
158
157
 
159
158
 
@@ -164,7 +163,7 @@ Should the major incompatible changes be made, the new release 2.0 will be intro
164
163
 
165
164
  <h2>
166
165
  Class Method Summary
167
- <small>(<a href="#" class="summary_toggle">collapse</a>)</small>
166
+ <small><a href="#" class="summary_toggle">collapse</a></small>
168
167
  </h2>
169
168
 
170
169
  <ul class="summary">
@@ -172,7 +171,7 @@ Should the major incompatible changes be made, the new release 2.0 will be intro
172
171
  <li class="public ">
173
172
  <span class="summary_signature">
174
173
 
175
- <a href="#c_id-class_method" title="c_id (class method)">+ (Object) <strong>c_id</strong>(obj) </a>
174
+ <a href="#c_id-class_method" title="c_id (class method)">.<strong>c_id</strong>(obj) &#x21d2; Object </a>
176
175
 
177
176
 
178
177
 
@@ -196,7 +195,7 @@ Should the major incompatible changes be made, the new release 2.0 will be intro
196
195
  <li class="public ">
197
196
  <span class="summary_signature">
198
197
 
199
- <a href="#priority_sort-class_method" title="priority_sort (class method)">+ (Object) <strong>priority_sort</strong>(entities, reverse = false) </a>
198
+ <a href="#priority_sort-class_method" title="priority_sort (class method)">.<strong>priority_sort</strong>(entities, reverse = false) &#x21d2; Object </a>
200
199
 
201
200
 
202
201
 
@@ -227,7 +226,7 @@ Should the major incompatible changes be made, the new release 2.0 will be intro
227
226
  <div class="method_details first">
228
227
  <h3 class="signature first" id="c_id-class_method">
229
228
 
230
- + (<tt>Object</tt>) <strong>c_id</strong>(obj)
229
+ .<strong>c_id</strong>(obj) &#x21d2; <tt>Object</tt>
231
230
 
232
231
 
233
232
 
@@ -286,7 +285,7 @@ Throw NameError is resulting string is not a valid C identifier.</p>
286
285
  <div class="method_details ">
287
286
  <h3 class="signature " id="priority_sort-class_method">
288
287
 
289
- + (<tt>Object</tt>) <strong>priority_sort</strong>(entities, reverse = false)
288
+ .<strong>priority_sort</strong>(entities, reverse = false) &#x21d2; <tt>Object</tt>
290
289
 
291
290
 
292
291
 
@@ -321,11 +320,12 @@ Throw NameError is resulting string is not a valid C identifier.</p>
321
320
 
322
321
  </div>
323
322
 
324
- <div id="footer">
325
- Generated on Thu Mar 17 13:32:50 2016 by
323
+ <div id="footer">
324
+ Generated on Wed Oct 12 12:27:11 2016 by
326
325
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
327
- 0.8.7.6 (ruby-2.2.4).
326
+ 0.9.5 (ruby-2.3.1).
328
327
  </div>
329
328
 
329
+ </div>
330
330
  </body>
331
331
  </html>
@@ -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::Code
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::Code";
19
19
  relpath = '../';
20
- framesUrl = "../frames.html#!AutoC/Code.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 (C)</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">Code</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::Code
64
+ <div id="content"><h1>Class: AutoC::Code
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">Object</span>
77
75
 
78
76
  <ul class="fullTree">
@@ -83,21 +81,25 @@
83
81
  </ul>
84
82
  <a href="#" class="inheritanceTree">show all</a>
85
83
 
86
- </dd>
87
-
84
+ </dd>
85
+ </dl>
86
+
87
+
88
88
 
89
89
 
90
-
91
90
 
92
-
93
91
 
94
92
 
93
+
94
+
95
+
95
96
 
96
- <dt class="r2 last">Defined in:</dt>
97
- <dd class="r2 last">lib/autoc/code.rb</dd>
97
+ <dl>
98
+ <dt>Defined in:</dt>
99
+ <dd>lib/autoc/code.rb</dd>
100
+ </dl>
98
101
 
99
- </dl>
100
- <div class="clear"></div>
102
+ </div>
101
103
 
102
104
  <h2>Overview</h2><div class="docstring">
103
105
  <div class="discussion">
@@ -124,7 +126,7 @@
124
126
 
125
127
  <h2>
126
128
  Instance Method Summary
127
- <small>(<a href="#" class="summary_toggle">collapse</a>)</small>
129
+ <small><a href="#" class="summary_toggle">collapse</a></small>
128
130
  </h2>
129
131
 
130
132
  <ul class="summary">
@@ -132,7 +134,7 @@
132
134
  <li class="public ">
133
135
  <span class="summary_signature">
134
136
 
135
- <a href="#attach-instance_method" title="#attach (instance method)">- (Object) <strong>attach</strong>(source) </a>
137
+ <a href="#attach-instance_method" title="#attach (instance method)">#<strong>attach</strong>(source) &#x21d2; Object </a>
136
138
 
137
139
 
138
140
 
@@ -154,7 +156,7 @@
154
156
  <li class="public ">
155
157
  <span class="summary_signature">
156
158
 
157
- <a href="#entities-instance_method" title="#entities (instance method)">- (Object) <strong>entities</strong> </a>
159
+ <a href="#entities-instance_method" title="#entities (instance method)">#<strong>entities</strong> &#x21d2; Object </a>
158
160
 
159
161
 
160
162
 
@@ -176,7 +178,7 @@
176
178
  <li class="public ">
177
179
  <span class="summary_signature">
178
180
 
179
- <a href="#priority-instance_method" title="#priority (instance method)">- (Object) <strong>priority</strong> </a>
181
+ <a href="#priority-instance_method" title="#priority (instance method)">#<strong>priority</strong> &#x21d2; Object </a>
180
182
 
181
183
 
182
184
 
@@ -198,7 +200,7 @@
198
200
  <li class="public ">
199
201
  <span class="summary_signature">
200
202
 
201
- <a href="#source_size-instance_method" title="#source_size (instance method)">- (Object) <strong>source_size</strong> </a>
203
+ <a href="#source_size-instance_method" title="#source_size (instance method)">#<strong>source_size</strong> &#x21d2; Object </a>
202
204
 
203
205
 
204
206
 
@@ -220,7 +222,7 @@
220
222
  <li class="public ">
221
223
  <span class="summary_signature">
222
224
 
223
- <a href="#write_decls-instance_method" title="#write_decls (instance method)">- (Object) <strong>write_decls</strong>(stream) </a>
225
+ <a href="#write_decls-instance_method" title="#write_decls (instance method)">#<strong>write_decls</strong>(stream) &#x21d2; Object </a>
224
226
 
225
227
 
226
228
 
@@ -242,7 +244,7 @@
242
244
  <li class="public ">
243
245
  <span class="summary_signature">
244
246
 
245
- <a href="#write_defs-instance_method" title="#write_defs (instance method)">- (Object) <strong>write_defs</strong>(stream) </a>
247
+ <a href="#write_defs-instance_method" title="#write_defs (instance method)">#<strong>write_defs</strong>(stream) &#x21d2; Object </a>
246
248
 
247
249
 
248
250
 
@@ -264,7 +266,7 @@
264
266
  <li class="public ">
265
267
  <span class="summary_signature">
266
268
 
267
- <a href="#write_intf-instance_method" title="#write_intf (instance method)">- (Object) <strong>write_intf</strong>(stream) </a>
269
+ <a href="#write_intf-instance_method" title="#write_intf (instance method)">#<strong>write_intf</strong>(stream) &#x21d2; Object </a>
268
270
 
269
271
 
270
272
 
@@ -295,7 +297,7 @@
295
297
  <div class="method_details first">
296
298
  <h3 class="signature first" id="attach-instance_method">
297
299
 
298
- - (<tt>Object</tt>) <strong>attach</strong>(source)
300
+ #<strong>attach</strong>(source) &#x21d2; <tt>Object</tt>
299
301
 
300
302
 
301
303
 
@@ -321,7 +323,7 @@
321
323
  <div class="method_details ">
322
324
  <h3 class="signature " id="entities-instance_method">
323
325
 
324
- - (<tt>Object</tt>) <strong>entities</strong>
326
+ #<strong>entities</strong> &#x21d2; <tt>Object</tt>
325
327
 
326
328
 
327
329
 
@@ -347,7 +349,7 @@
347
349
  <div class="method_details ">
348
350
  <h3 class="signature " id="priority-instance_method">
349
351
 
350
- - (<tt>Object</tt>) <strong>priority</strong>
352
+ #<strong>priority</strong> &#x21d2; <tt>Object</tt>
351
353
 
352
354
 
353
355
 
@@ -395,7 +397,7 @@
395
397
  <div class="method_details ">
396
398
  <h3 class="signature " id="source_size-instance_method">
397
399
 
398
- - (<tt>Object</tt>) <strong>source_size</strong>
400
+ #<strong>source_size</strong> &#x21d2; <tt>Object</tt>
399
401
 
400
402
 
401
403
 
@@ -431,7 +433,7 @@
431
433
  <div class="method_details ">
432
434
  <h3 class="signature " id="write_decls-instance_method">
433
435
 
434
- - (<tt>Object</tt>) <strong>write_decls</strong>(stream)
436
+ #<strong>write_decls</strong>(stream) &#x21d2; <tt>Object</tt>
435
437
 
436
438
 
437
439
 
@@ -457,7 +459,7 @@
457
459
  <div class="method_details ">
458
460
  <h3 class="signature " id="write_defs-instance_method">
459
461
 
460
- - (<tt>Object</tt>) <strong>write_defs</strong>(stream)
462
+ #<strong>write_defs</strong>(stream) &#x21d2; <tt>Object</tt>
461
463
 
462
464
 
463
465
 
@@ -483,7 +485,7 @@
483
485
  <div class="method_details ">
484
486
  <h3 class="signature " id="write_intf-instance_method">
485
487
 
486
- - (<tt>Object</tt>) <strong>write_intf</strong>(stream)
488
+ #<strong>write_intf</strong>(stream) &#x21d2; <tt>Object</tt>
487
489
 
488
490
 
489
491
 
@@ -510,11 +512,12 @@
510
512
 
511
513
  </div>
512
514
 
513
- <div id="footer">
514
- Generated on Thu Mar 17 13:32:50 2016 by
515
+ <div id="footer">
516
+ Generated on Wed Oct 12 12:27:11 2016 by
515
517
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
516
- 0.8.7.6 (ruby-2.2.4).
518
+ 0.9.5 (ruby-2.3.1).
517
519
  </div>
518
520
 
521
+ </div>
519
522
  </body>
520
523
  </html>