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
@@ -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::Module::Header
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::Module::Header";
19
19
  relpath = '../../';
20
- framesUrl = "../../frames.html#!AutoC/Module/Header.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 (H)</a> &raquo;
35
40
  <span class='title'><span class='object_link'><a href="../../AutoC.html" title="AutoC (module)">AutoC</a></span></span> &raquo; <span class='title'><span class='object_link'><a href="../Module.html" title="AutoC::Module (class)">Module</a></span></span>
36
41
  &raquo;
37
42
  <span class="title">Header</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::Module::Header
64
+ <div id="content"><h1>Class: AutoC::Module::Header
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="File.html" title="AutoC::Module::File (class)">File</a></span></span>
77
75
 
78
76
  <ul class="fullTree">
@@ -85,33 +83,37 @@
85
83
  </ul>
86
84
  <a href="#" class="inheritanceTree">show all</a>
87
85
 
88
- </dd>
89
-
86
+ </dd>
87
+ </dl>
88
+
89
+
90
90
 
91
91
 
92
-
93
92
 
94
-
95
93
 
96
94
 
95
+
96
+
97
+
97
98
 
98
- <dt class="r2 last">Defined in:</dt>
99
- <dd class="r2 last">lib/autoc/code.rb</dd>
99
+ <dl>
100
+ <dt>Defined in:</dt>
101
+ <dd>lib/autoc/code.rb</dd>
102
+ </dl>
100
103
 
101
- </dl>
102
- <div class="clear"></div>
104
+ </div>
103
105
 
104
106
 
105
107
 
106
108
 
107
109
 
108
- <h2>Instance Attribute Summary <small>(<a href="#" class="summary_toggle">collapse</a>)</small></h2>
110
+ <h2>Instance Attribute Summary <small><a href="#" class="summary_toggle">collapse</a></small></h2>
109
111
  <ul class="summary">
110
112
 
111
113
  <li class="public ">
112
114
  <span class="summary_signature">
113
115
 
114
- <a href="#file_name-instance_method" title="#file_name (instance method)">- (Object) <strong>file_name</strong> </a>
116
+ <a href="#file_name-instance_method" title="#file_name (instance method)">#<strong>file_name</strong> &#x21d2; Object </a>
115
117
 
116
118
 
117
119
 
@@ -150,7 +152,7 @@
150
152
 
151
153
  <h2>
152
154
  Instance Method Summary
153
- <small>(<a href="#" class="summary_toggle">collapse</a>)</small>
155
+ <small><a href="#" class="summary_toggle">collapse</a></small>
154
156
  </h2>
155
157
 
156
158
  <ul class="summary">
@@ -158,7 +160,7 @@
158
160
  <li class="public ">
159
161
  <span class="summary_signature">
160
162
 
161
- <a href="#initialize-instance_method" title="#initialize (instance method)">- (Header) <strong>initialize</strong>(*args) </a>
163
+ <a href="#initialize-instance_method" title="#initialize (instance method)">#<strong>initialize</strong>(*args) &#x21d2; Header </a>
162
164
 
163
165
 
164
166
 
@@ -184,7 +186,7 @@
184
186
  <li class="public ">
185
187
  <span class="summary_signature">
186
188
 
187
- <a href="#new_stream-instance_method" title="#new_stream (instance method)">- (Object) <strong>new_stream</strong> </a>
189
+ <a href="#new_stream-instance_method" title="#new_stream (instance method)">#<strong>new_stream</strong> &#x21d2; Object </a>
188
190
 
189
191
 
190
192
 
@@ -206,7 +208,7 @@
206
208
  <li class="public ">
207
209
  <span class="summary_signature">
208
210
 
209
- <a href="#write-instance_method" title="#write (instance method)">- (Object) <strong>write</strong>(stream) </a>
211
+ <a href="#write-instance_method" title="#write (instance method)">#<strong>write</strong>(stream) &#x21d2; Object </a>
210
212
 
211
213
 
212
214
 
@@ -245,7 +247,7 @@
245
247
  <div class="method_details first">
246
248
  <h3 class="signature first" id="initialize-instance_method">
247
249
 
248
- - (<tt><span class='object_link'><a href="" title="AutoC::Module::Header (class)">Header</a></span></tt>) <strong>initialize</strong>(*args)
250
+ #<strong>initialize</strong>(*args) &#x21d2; <tt><span class='object_link'><a href="" title="AutoC::Module::Header (class)">Header</a></span></tt>
249
251
 
250
252
 
251
253
 
@@ -297,7 +299,7 @@
297
299
  <div class="method_details first">
298
300
  <h3 class="signature first" id="file_name-instance_method">
299
301
 
300
- - (<tt>Object</tt>) <strong>file_name</strong> <span class="extras">(readonly)</span>
302
+ #<strong>file_name</strong> &#x21d2; <tt>Object</tt> <span class="extras">(readonly)</span>
301
303
 
302
304
 
303
305
 
@@ -345,7 +347,7 @@
345
347
  <div class="method_details first">
346
348
  <h3 class="signature first" id="new_stream-instance_method">
347
349
 
348
- - (<tt>Object</tt>) <strong>new_stream</strong>
350
+ #<strong>new_stream</strong> &#x21d2; <tt>Object</tt>
349
351
 
350
352
 
351
353
 
@@ -375,7 +377,7 @@
375
377
  <div class="method_details ">
376
378
  <h3 class="signature " id="write-instance_method">
377
379
 
378
- - (<tt>Object</tt>) <strong>write</strong>(stream)
380
+ #<strong>write</strong>(stream) &#x21d2; <tt>Object</tt>
379
381
 
380
382
 
381
383
 
@@ -424,11 +426,12 @@
424
426
 
425
427
  </div>
426
428
 
427
- <div id="footer">
428
- Generated on Thu Mar 17 13:32:50 2016 by
429
+ <div id="footer">
430
+ Generated on Wed Oct 12 12:27:11 2016 by
429
431
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
430
- 0.8.7.6 (ruby-2.2.4).
432
+ 0.9.5 (ruby-2.3.1).
431
433
  </div>
432
434
 
435
+ </div>
433
436
  </body>
434
437
  </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::Module::Source
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::Module::Source";
19
19
  relpath = '../../';
20
- framesUrl = "../../frames.html#!AutoC/Module/Source.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 (S)</a> &raquo;
35
40
  <span class='title'><span class='object_link'><a href="../../AutoC.html" title="AutoC (module)">AutoC</a></span></span> &raquo; <span class='title'><span class='object_link'><a href="../Module.html" title="AutoC::Module (class)">Module</a></span></span>
36
41
  &raquo;
37
42
  <span class="title">Source</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::Module::Source
64
+ <div id="content"><h1>Class: AutoC::Module::Source
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="File.html" title="AutoC::Module::File (class)">File</a></span></span>
77
75
 
78
76
  <ul class="fullTree">
@@ -85,33 +83,37 @@
85
83
  </ul>
86
84
  <a href="#" class="inheritanceTree">show all</a>
87
85
 
88
- </dd>
89
-
86
+ </dd>
87
+ </dl>
88
+
89
+
90
90
 
91
91
 
92
-
93
92
 
94
-
95
93
 
96
94
 
95
+
96
+
97
+
97
98
 
98
- <dt class="r2 last">Defined in:</dt>
99
- <dd class="r2 last">lib/autoc/code.rb</dd>
99
+ <dl>
100
+ <dt>Defined in:</dt>
101
+ <dd>lib/autoc/code.rb</dd>
102
+ </dl>
100
103
 
101
- </dl>
102
- <div class="clear"></div>
104
+ </div>
103
105
 
104
106
 
105
107
 
106
108
 
107
109
 
108
- <h2>Instance Attribute Summary <small>(<a href="#" class="summary_toggle">collapse</a>)</small></h2>
110
+ <h2>Instance Attribute Summary <small><a href="#" class="summary_toggle">collapse</a></small></h2>
109
111
  <ul class="summary">
110
112
 
111
113
  <li class="public ">
112
114
  <span class="summary_signature">
113
115
 
114
- <a href="#file_name-instance_method" title="#file_name (instance method)">- (Object) <strong>file_name</strong> </a>
116
+ <a href="#file_name-instance_method" title="#file_name (instance method)">#<strong>file_name</strong> &#x21d2; Object </a>
115
117
 
116
118
 
117
119
 
@@ -140,7 +142,7 @@
140
142
  <li class="public ">
141
143
  <span class="summary_signature">
142
144
 
143
- <a href="#index-instance_method" title="#index (instance method)">- (Object) <strong>index</strong> </a>
145
+ <a href="#index-instance_method" title="#index (instance method)">#<strong>index</strong> &#x21d2; Object </a>
144
146
 
145
147
 
146
148
 
@@ -179,7 +181,7 @@
179
181
 
180
182
  <h2>
181
183
  Instance Method Summary
182
- <small>(<a href="#" class="summary_toggle">collapse</a>)</small>
184
+ <small><a href="#" class="summary_toggle">collapse</a></small>
183
185
  </h2>
184
186
 
185
187
  <ul class="summary">
@@ -187,7 +189,7 @@
187
189
  <li class="public ">
188
190
  <span class="summary_signature">
189
191
 
190
- <a href="#initialize-instance_method" title="#initialize (instance method)">- (Source) <strong>initialize</strong>(m, i) </a>
192
+ <a href="#initialize-instance_method" title="#initialize (instance method)">#<strong>initialize</strong>(m, i) &#x21d2; Source </a>
191
193
 
192
194
 
193
195
 
@@ -213,7 +215,7 @@
213
215
  <li class="public ">
214
216
  <span class="summary_signature">
215
217
 
216
- <a href="#main%3F-instance_method" title="#main? (instance method)">- (Boolean) <strong>main?</strong> </a>
218
+ <a href="#main%3F-instance_method" title="#main? (instance method)">#<strong>main?</strong> &#x21d2; Boolean </a>
217
219
 
218
220
 
219
221
 
@@ -235,7 +237,7 @@
235
237
  <li class="public ">
236
238
  <span class="summary_signature">
237
239
 
238
- <a href="#new_stream-instance_method" title="#new_stream (instance method)">- (Object) <strong>new_stream</strong> </a>
240
+ <a href="#new_stream-instance_method" title="#new_stream (instance method)">#<strong>new_stream</strong> &#x21d2; Object </a>
239
241
 
240
242
 
241
243
 
@@ -257,7 +259,7 @@
257
259
  <li class="public ">
258
260
  <span class="summary_signature">
259
261
 
260
- <a href="#size-instance_method" title="#size (instance method)">- (Object) <strong>size</strong> </a>
262
+ <a href="#size-instance_method" title="#size (instance method)">#<strong>size</strong> &#x21d2; Object </a>
261
263
 
262
264
 
263
265
 
@@ -279,7 +281,7 @@
279
281
  <li class="public ">
280
282
  <span class="summary_signature">
281
283
 
282
- <a href="#smallest%3F-instance_method" title="#smallest? (instance method)">- (Boolean) <strong>smallest?</strong> </a>
284
+ <a href="#smallest%3F-instance_method" title="#smallest? (instance method)">#<strong>smallest?</strong> &#x21d2; Boolean </a>
283
285
 
284
286
 
285
287
 
@@ -301,7 +303,7 @@
301
303
  <li class="public ">
302
304
  <span class="summary_signature">
303
305
 
304
- <a href="#write-instance_method" title="#write (instance method)">- (Object) <strong>write</strong>(stream) </a>
306
+ <a href="#write-instance_method" title="#write (instance method)">#<strong>write</strong>(stream) &#x21d2; Object </a>
305
307
 
306
308
 
307
309
 
@@ -340,7 +342,7 @@
340
342
  <div class="method_details first">
341
343
  <h3 class="signature first" id="initialize-instance_method">
342
344
 
343
- - (<tt><span class='object_link'><a href="" title="AutoC::Module::Source (class)">Source</a></span></tt>) <strong>initialize</strong>(m, i)
345
+ #<strong>initialize</strong>(m, i) &#x21d2; <tt><span class='object_link'><a href="" title="AutoC::Module::Source (class)">Source</a></span></tt>
344
346
 
345
347
 
346
348
 
@@ -392,7 +394,7 @@
392
394
  <div class="method_details first">
393
395
  <h3 class="signature first" id="file_name-instance_method">
394
396
 
395
- - (<tt>Object</tt>) <strong>file_name</strong> <span class="extras">(readonly)</span>
397
+ #<strong>file_name</strong> &#x21d2; <tt>Object</tt> <span class="extras">(readonly)</span>
396
398
 
397
399
 
398
400
 
@@ -435,7 +437,7 @@
435
437
  <div class="method_details ">
436
438
  <h3 class="signature " id="index-instance_method">
437
439
 
438
- - (<tt>Object</tt>) <strong>index</strong> <span class="extras">(readonly)</span>
440
+ #<strong>index</strong> &#x21d2; <tt>Object</tt> <span class="extras">(readonly)</span>
439
441
 
440
442
 
441
443
 
@@ -483,7 +485,7 @@
483
485
  <div class="method_details first">
484
486
  <h3 class="signature first" id="main?-instance_method">
485
487
 
486
- - (<tt>Boolean</tt>) <strong>main?</strong>
488
+ #<strong>main?</strong> &#x21d2; <tt>Boolean</tt>
487
489
 
488
490
 
489
491
 
@@ -535,7 +537,7 @@
535
537
  <div class="method_details ">
536
538
  <h3 class="signature " id="new_stream-instance_method">
537
539
 
538
- - (<tt>Object</tt>) <strong>new_stream</strong>
540
+ #<strong>new_stream</strong> &#x21d2; <tt>Object</tt>
539
541
 
540
542
 
541
543
 
@@ -565,7 +567,7 @@
565
567
  <div class="method_details ">
566
568
  <h3 class="signature " id="size-instance_method">
567
569
 
568
- - (<tt>Object</tt>) <strong>size</strong>
570
+ #<strong>size</strong> &#x21d2; <tt>Object</tt>
569
571
 
570
572
 
571
573
 
@@ -599,7 +601,7 @@
599
601
  <div class="method_details ">
600
602
  <h3 class="signature " id="smallest?-instance_method">
601
603
 
602
- - (<tt>Boolean</tt>) <strong>smallest?</strong>
604
+ #<strong>smallest?</strong> &#x21d2; <tt>Boolean</tt>
603
605
 
604
606
 
605
607
 
@@ -651,7 +653,7 @@
651
653
  <div class="method_details ">
652
654
  <h3 class="signature " id="write-instance_method">
653
655
 
654
- - (<tt>Object</tt>) <strong>write</strong>(stream)
656
+ #<strong>write</strong>(stream) &#x21d2; <tt>Object</tt>
655
657
 
656
658
 
657
659
 
@@ -694,11 +696,12 @@
694
696
 
695
697
  </div>
696
698
 
697
- <div id="footer">
698
- Generated on Thu Mar 17 13:32:51 2016 by
699
+ <div id="footer">
700
+ Generated on Wed Oct 12 12:27:11 2016 by
699
701
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
700
- 0.8.7.6 (ruby-2.2.4).
702
+ 0.9.5 (ruby-2.3.1).
701
703
  </div>
702
704
 
705
+ </div>
703
706
  </body>
704
707
  </html>