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.
- checksums.yaml +4 -4
- data/CHANGES +4 -0
- data/doc/AutoC.html +55 -55
- data/doc/AutoC/Code.html +60 -57
- data/doc/AutoC/Collection.html +134 -124
- data/doc/AutoC/HashMap.html +147 -185
- data/doc/AutoC/HashSet.html +114 -325
- data/doc/AutoC/Iterators.html +126 -0
- data/doc/AutoC/Iterators/Bidirectional.html +204 -0
- data/doc/AutoC/Iterators/Unidirectional.html +200 -0
- data/doc/AutoC/List.html +81 -76
- data/doc/AutoC/Maps.html +290 -0
- data/doc/AutoC/Module.html +72 -69
- data/doc/AutoC/Module/File.html +55 -52
- data/doc/AutoC/Module/Header.html +55 -52
- data/doc/AutoC/Module/Source.html +63 -60
- data/doc/AutoC/Priority.html +57 -57
- data/doc/AutoC/Queue.html +75 -74
- data/doc/AutoC/Reference.html +92 -91
- data/doc/AutoC/Sets.html +520 -0
- data/doc/AutoC/String.html +70 -69
- data/doc/AutoC/TreeMap.html +1565 -0
- data/doc/AutoC/TreeSet.html +1447 -0
- data/doc/AutoC/Type.html +184 -110
- data/doc/AutoC/UserDefinedType.html +102 -102
- data/doc/AutoC/Vector.html +100 -91
- data/doc/_index.html +97 -33
- data/doc/class_list.html +24 -31
- data/doc/css/full_list.css +32 -31
- data/doc/css/style.css +220 -78
- data/doc/file.CHANGES.html +37 -30
- data/doc/file.README.html +29 -30
- data/doc/file_list.html +29 -31
- data/doc/frames.html +7 -16
- data/doc/index.html +29 -30
- data/doc/js/app.js +100 -76
- data/doc/js/full_list.js +170 -135
- data/doc/method_list.html +877 -431
- data/doc/top-level-namespace.html +35 -35
- data/lib/autoc.rb +4 -2
- data/lib/autoc/collection.rb +10 -4
- data/lib/autoc/collection/hash_map.rb +22 -41
- data/lib/autoc/collection/hash_set.rb +13 -120
- data/lib/autoc/collection/iterator.rb +39 -0
- data/lib/autoc/collection/list.rb +7 -5
- data/lib/autoc/collection/map.rb +41 -0
- data/lib/autoc/collection/queue.rb +8 -8
- data/lib/autoc/collection/set.rb +134 -0
- data/lib/autoc/collection/tree_map.rb +464 -0
- data/lib/autoc/collection/tree_set.rb +611 -0
- data/lib/autoc/collection/vector.rb +8 -4
- data/lib/autoc/string.rb +1 -1
- data/lib/autoc/type.rb +3 -0
- data/test/test.rb +2 -2
- data/test/test_auto.c +7141 -0
- data/test/test_auto.h +753 -0
- data/test/test_int_tree_set.rb +111 -0
- data/test/test_value_hash_map.rb +1 -1
- data/test/test_value_hash_set.rb +1 -1
- data/test/test_value_tree_map.rb +176 -0
- data/test/test_value_tree_set.rb +173 -0
- metadata +21 -5
data/doc/AutoC/Module.html
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
-
<!DOCTYPE html
|
2
|
-
|
3
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
4
3
|
<head>
|
5
|
-
<meta
|
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
|
8
8
|
|
9
|
-
— Documentation by YARD 0.
|
9
|
+
— 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
|
-
|
18
|
+
pathId = "AutoC::Module";
|
19
19
|
relpath = '../';
|
20
|
-
framesUrl = "../frames.html#!AutoC/Module.html";
|
21
20
|
</script>
|
22
21
|
|
23
22
|
|
@@ -28,51 +27,50 @@
|
|
28
27
|
|
29
28
|
</head>
|
30
29
|
<body>
|
31
|
-
<div
|
32
|
-
<
|
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 (M)</a> »
|
35
40
|
<span class='title'><span class='object_link'><a href="../AutoC.html" title="AutoC (module)">AutoC</a></span></span>
|
36
41
|
»
|
37
42
|
<span class="title">Module</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
|
-
|
46
|
+
<div id="search">
|
44
47
|
|
45
48
|
<a class="full_list_link" id="class_list_link"
|
46
49
|
href="../class_list.html">
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
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
|
-
|
62
|
-
|
59
|
+
<div class="clear"></div>
|
60
|
+
</div>
|
63
61
|
|
64
|
-
|
62
|
+
<iframe id="search_frame" src="../class_list.html"></iframe>
|
65
63
|
|
66
|
-
|
64
|
+
<div id="content"><h1>Class: AutoC::Module
|
67
65
|
|
68
66
|
|
69
67
|
|
70
68
|
</h1>
|
71
|
-
|
72
|
-
<dl class="box">
|
69
|
+
<div class="box_info">
|
73
70
|
|
74
|
-
|
75
|
-
<
|
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
|
-
|
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
|
-
|
97
|
-
<
|
97
|
+
<dl>
|
98
|
+
<dt>Defined in:</dt>
|
99
|
+
<dd>lib/autoc/code.rb</dd>
|
100
|
+
</dl>
|
98
101
|
|
99
|
-
</
|
100
|
-
<div class="clear"></div>
|
102
|
+
</div>
|
101
103
|
|
102
104
|
<h2>Defined Under Namespace</h2>
|
103
105
|
<p class="children">
|
@@ -113,13 +115,13 @@
|
|
113
115
|
|
114
116
|
|
115
117
|
|
116
|
-
<h2>Instance Attribute Summary <small
|
118
|
+
<h2>Instance Attribute Summary <small><a href="#" class="summary_toggle">collapse</a></small></h2>
|
117
119
|
<ul class="summary">
|
118
120
|
|
119
121
|
<li class="public ">
|
120
122
|
<span class="summary_signature">
|
121
123
|
|
122
|
-
<a href="#header-instance_method" title="#header (instance method)"
|
124
|
+
<a href="#header-instance_method" title="#header (instance method)">#<strong>header</strong> ⇒ Object </a>
|
123
125
|
|
124
126
|
|
125
127
|
|
@@ -148,7 +150,7 @@
|
|
148
150
|
<li class="public ">
|
149
151
|
<span class="summary_signature">
|
150
152
|
|
151
|
-
<a href="#main_source-instance_method" title="#main_source (instance method)"
|
153
|
+
<a href="#main_source-instance_method" title="#main_source (instance method)">#<strong>main_source</strong> ⇒ Object </a>
|
152
154
|
|
153
155
|
|
154
156
|
|
@@ -177,7 +179,7 @@
|
|
177
179
|
<li class="public ">
|
178
180
|
<span class="summary_signature">
|
179
181
|
|
180
|
-
<a href="#name-instance_method" title="#name (instance method)"
|
182
|
+
<a href="#name-instance_method" title="#name (instance method)">#<strong>name</strong> ⇒ Object </a>
|
181
183
|
|
182
184
|
|
183
185
|
|
@@ -206,7 +208,7 @@
|
|
206
208
|
<li class="public ">
|
207
209
|
<span class="summary_signature">
|
208
210
|
|
209
|
-
<a href="#smallest_source-instance_method" title="#smallest_source (instance method)"
|
211
|
+
<a href="#smallest_source-instance_method" title="#smallest_source (instance method)">#<strong>smallest_source</strong> ⇒ Object </a>
|
210
212
|
|
211
213
|
|
212
214
|
|
@@ -240,7 +242,7 @@
|
|
240
242
|
|
241
243
|
<h2>
|
242
244
|
Class Method Summary
|
243
|
-
<small
|
245
|
+
<small><a href="#" class="summary_toggle">collapse</a></small>
|
244
246
|
</h2>
|
245
247
|
|
246
248
|
<ul class="summary">
|
@@ -248,7 +250,7 @@
|
|
248
250
|
<li class="public ">
|
249
251
|
<span class="summary_signature">
|
250
252
|
|
251
|
-
<a href="#generate%21-class_method" title="generate! (class method)"
|
253
|
+
<a href="#generate%21-class_method" title="generate! (class method)">.<strong>generate!</strong>(name, &block) ⇒ Object </a>
|
252
254
|
|
253
255
|
|
254
256
|
|
@@ -271,7 +273,7 @@
|
|
271
273
|
|
272
274
|
<h2>
|
273
275
|
Instance Method Summary
|
274
|
-
<small
|
276
|
+
<small><a href="#" class="summary_toggle">collapse</a></small>
|
275
277
|
</h2>
|
276
278
|
|
277
279
|
<ul class="summary">
|
@@ -279,7 +281,7 @@
|
|
279
281
|
<li class="public ">
|
280
282
|
<span class="summary_signature">
|
281
283
|
|
282
|
-
<a href="#%3C%3C-instance_method" title="#<< (instance method)"
|
284
|
+
<a href="#%3C%3C-instance_method" title="#<< (instance method)">#<strong><<</strong>(obj) ⇒ Object </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="#generate%21-instance_method" title="#generate! (instance method)"
|
306
|
+
<a href="#generate%21-instance_method" title="#generate! (instance method)">#<strong>generate!</strong> ⇒ Object </a>
|
305
307
|
|
306
308
|
|
307
309
|
|
@@ -323,7 +325,7 @@
|
|
323
325
|
<li class="public ">
|
324
326
|
<span class="summary_signature">
|
325
327
|
|
326
|
-
<a href="#initialize-instance_method" title="#initialize (instance method)"
|
328
|
+
<a href="#initialize-instance_method" title="#initialize (instance method)">#<strong>initialize</strong>(name) ⇒ Module </a>
|
327
329
|
|
328
330
|
|
329
331
|
|
@@ -349,7 +351,7 @@
|
|
349
351
|
<li class="public ">
|
350
352
|
<span class="summary_signature">
|
351
353
|
|
352
|
-
<a href="#new_header-instance_method" title="#new_header (instance method)"
|
354
|
+
<a href="#new_header-instance_method" title="#new_header (instance method)">#<strong>new_header</strong> ⇒ Object </a>
|
353
355
|
|
354
356
|
|
355
357
|
|
@@ -371,7 +373,7 @@
|
|
371
373
|
<li class="public ">
|
372
374
|
<span class="summary_signature">
|
373
375
|
|
374
|
-
<a href="#new_source-instance_method" title="#new_source (instance method)"
|
376
|
+
<a href="#new_source-instance_method" title="#new_source (instance method)">#<strong>new_source</strong>(index) ⇒ Object </a>
|
375
377
|
|
376
378
|
|
377
379
|
|
@@ -393,7 +395,7 @@
|
|
393
395
|
<li class="public ">
|
394
396
|
<span class="summary_signature">
|
395
397
|
|
396
|
-
<a href="#source_count-instance_method" title="#source_count (instance method)"
|
398
|
+
<a href="#source_count-instance_method" title="#source_count (instance method)">#<strong>source_count</strong> ⇒ Object </a>
|
397
399
|
|
398
400
|
|
399
401
|
|
@@ -415,7 +417,7 @@
|
|
415
417
|
<li class="public ">
|
416
418
|
<span class="summary_signature">
|
417
419
|
|
418
|
-
<a href="#source_count%3D-instance_method" title="#source_count= (instance method)"
|
420
|
+
<a href="#source_count%3D-instance_method" title="#source_count= (instance method)">#<strong>source_count=</strong>(count) ⇒ Object </a>
|
419
421
|
|
420
422
|
|
421
423
|
|
@@ -443,7 +445,7 @@
|
|
443
445
|
<div class="method_details first">
|
444
446
|
<h3 class="signature first" id="initialize-instance_method">
|
445
447
|
|
446
|
-
|
448
|
+
#<strong>initialize</strong>(name) ⇒ <tt><span class='object_link'><a href="" title="AutoC::Module (class)">Module</a></span></tt>
|
447
449
|
|
448
450
|
|
449
451
|
|
@@ -495,7 +497,7 @@
|
|
495
497
|
<div class="method_details first">
|
496
498
|
<h3 class="signature first" id="header-instance_method">
|
497
499
|
|
498
|
-
|
500
|
+
#<strong>header</strong> ⇒ <tt>Object</tt> <span class="extras">(readonly)</span>
|
499
501
|
|
500
502
|
|
501
503
|
|
@@ -538,7 +540,7 @@
|
|
538
540
|
<div class="method_details ">
|
539
541
|
<h3 class="signature " id="main_source-instance_method">
|
540
542
|
|
541
|
-
|
543
|
+
#<strong>main_source</strong> ⇒ <tt>Object</tt> <span class="extras">(readonly)</span>
|
542
544
|
|
543
545
|
|
544
546
|
|
@@ -581,7 +583,7 @@
|
|
581
583
|
<div class="method_details ">
|
582
584
|
<h3 class="signature " id="name-instance_method">
|
583
585
|
|
584
|
-
|
586
|
+
#<strong>name</strong> ⇒ <tt>Object</tt> <span class="extras">(readonly)</span>
|
585
587
|
|
586
588
|
|
587
589
|
|
@@ -624,7 +626,7 @@
|
|
624
626
|
<div class="method_details ">
|
625
627
|
<h3 class="signature " id="smallest_source-instance_method">
|
626
628
|
|
627
|
-
|
629
|
+
#<strong>smallest_source</strong> ⇒ <tt>Object</tt> <span class="extras">(readonly)</span>
|
628
630
|
|
629
631
|
|
630
632
|
|
@@ -672,7 +674,7 @@
|
|
672
674
|
<div class="method_details first">
|
673
675
|
<h3 class="signature first" id="generate!-class_method">
|
674
676
|
|
675
|
-
|
677
|
+
.<strong>generate!</strong>(name, &block) ⇒ <tt>Object</tt>
|
676
678
|
|
677
679
|
|
678
680
|
|
@@ -712,7 +714,7 @@
|
|
712
714
|
<div class="method_details first">
|
713
715
|
<h3 class="signature first" id="<<-instance_method">
|
714
716
|
|
715
|
-
|
717
|
+
#<strong><<</strong>(obj) ⇒ <tt>Object</tt>
|
716
718
|
|
717
719
|
|
718
720
|
|
@@ -744,7 +746,7 @@
|
|
744
746
|
<div class="method_details ">
|
745
747
|
<h3 class="signature " id="generate!-instance_method">
|
746
748
|
|
747
|
-
|
749
|
+
#<strong>generate!</strong> ⇒ <tt>Object</tt>
|
748
750
|
|
749
751
|
|
750
752
|
|
@@ -800,7 +802,7 @@
|
|
800
802
|
<div class="method_details ">
|
801
803
|
<h3 class="signature " id="new_header-instance_method">
|
802
804
|
|
803
|
-
|
805
|
+
#<strong>new_header</strong> ⇒ <tt>Object</tt>
|
804
806
|
|
805
807
|
|
806
808
|
|
@@ -830,7 +832,7 @@
|
|
830
832
|
<div class="method_details ">
|
831
833
|
<h3 class="signature " id="new_source-instance_method">
|
832
834
|
|
833
|
-
|
835
|
+
#<strong>new_source</strong>(index) ⇒ <tt>Object</tt>
|
834
836
|
|
835
837
|
|
836
838
|
|
@@ -860,7 +862,7 @@
|
|
860
862
|
<div class="method_details ">
|
861
863
|
<h3 class="signature " id="source_count-instance_method">
|
862
864
|
|
863
|
-
|
865
|
+
#<strong>source_count</strong> ⇒ <tt>Object</tt>
|
864
866
|
|
865
867
|
|
866
868
|
|
@@ -904,7 +906,7 @@
|
|
904
906
|
<div class="method_details ">
|
905
907
|
<h3 class="signature " id="source_count=-instance_method">
|
906
908
|
|
907
|
-
|
909
|
+
#<strong>source_count=</strong>(count) ⇒ <tt>Object</tt>
|
908
910
|
|
909
911
|
|
910
912
|
|
@@ -935,11 +937,12 @@
|
|
935
937
|
|
936
938
|
</div>
|
937
939
|
|
938
|
-
|
939
|
-
Generated on
|
940
|
+
<div id="footer">
|
941
|
+
Generated on Wed Oct 12 12:27:11 2016 by
|
940
942
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
941
|
-
0.
|
943
|
+
0.9.5 (ruby-2.3.1).
|
942
944
|
</div>
|
943
945
|
|
946
|
+
</div>
|
944
947
|
</body>
|
945
948
|
</html>
|
data/doc/AutoC/Module/File.html
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
-
<!DOCTYPE html
|
2
|
-
|
3
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
4
3
|
<head>
|
5
|
-
<meta
|
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::File
|
8
8
|
|
9
|
-
— Documentation by YARD 0.
|
9
|
+
— 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
|
-
|
18
|
+
pathId = "AutoC::Module::File";
|
19
19
|
relpath = '../../';
|
20
|
-
framesUrl = "../../frames.html#!AutoC/Module/File.html";
|
21
20
|
</script>
|
22
21
|
|
23
22
|
|
@@ -28,51 +27,50 @@
|
|
28
27
|
|
29
28
|
</head>
|
30
29
|
<body>
|
31
|
-
<div
|
32
|
-
<
|
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 (F)</a> »
|
35
40
|
<span class='title'><span class='object_link'><a href="../../AutoC.html" title="AutoC (module)">AutoC</a></span></span> » <span class='title'><span class='object_link'><a href="../Module.html" title="AutoC::Module (class)">Module</a></span></span>
|
36
41
|
»
|
37
42
|
<span class="title">File</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
|
-
|
46
|
+
<div id="search">
|
44
47
|
|
45
48
|
<a class="full_list_link" id="class_list_link"
|
46
49
|
href="../../class_list.html">
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
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
|
-
|
62
|
-
|
59
|
+
<div class="clear"></div>
|
60
|
+
</div>
|
63
61
|
|
64
|
-
|
62
|
+
<iframe id="search_frame" src="../../class_list.html"></iframe>
|
65
63
|
|
66
|
-
|
64
|
+
<div id="content"><h1>Class: AutoC::Module::File
|
67
65
|
|
68
66
|
|
69
67
|
|
70
68
|
</h1>
|
71
|
-
|
72
|
-
<dl class="box">
|
69
|
+
<div class="box_info">
|
73
70
|
|
74
|
-
|
75
|
-
<
|
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
|
-
|
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
|
-
|
97
|
-
<
|
97
|
+
<dl>
|
98
|
+
<dt>Defined in:</dt>
|
99
|
+
<dd>lib/autoc/code.rb</dd>
|
100
|
+
</dl>
|
98
101
|
|
99
|
-
</
|
100
|
-
<div class="clear"></div>
|
102
|
+
</div>
|
101
103
|
|
102
104
|
<div id="subclasses">
|
103
105
|
<h2>Direct Known Subclasses</h2>
|
@@ -107,13 +109,13 @@
|
|
107
109
|
|
108
110
|
|
109
111
|
|
110
|
-
<h2>Instance Attribute Summary <small
|
112
|
+
<h2>Instance Attribute Summary <small><a href="#" class="summary_toggle">collapse</a></small></h2>
|
111
113
|
<ul class="summary">
|
112
114
|
|
113
115
|
<li class="public ">
|
114
116
|
<span class="summary_signature">
|
115
117
|
|
116
|
-
<a href="#entities-instance_method" title="#entities (instance method)"
|
118
|
+
<a href="#entities-instance_method" title="#entities (instance method)">#<strong>entities</strong> ⇒ Object </a>
|
117
119
|
|
118
120
|
|
119
121
|
|
@@ -147,7 +149,7 @@
|
|
147
149
|
|
148
150
|
<h2>
|
149
151
|
Instance Method Summary
|
150
|
-
<small
|
152
|
+
<small><a href="#" class="summary_toggle">collapse</a></small>
|
151
153
|
</h2>
|
152
154
|
|
153
155
|
<ul class="summary">
|
@@ -155,7 +157,7 @@
|
|
155
157
|
<li class="public ">
|
156
158
|
<span class="summary_signature">
|
157
159
|
|
158
|
-
<a href="#%3C%3C-instance_method" title="#<< (instance method)"
|
160
|
+
<a href="#%3C%3C-instance_method" title="#<< (instance method)">#<strong><<</strong>(e) ⇒ Object </a>
|
159
161
|
|
160
162
|
|
161
163
|
|
@@ -177,7 +179,7 @@
|
|
177
179
|
<li class="public ">
|
178
180
|
<span class="summary_signature">
|
179
181
|
|
180
|
-
<a href="#generate-instance_method" title="#generate (instance method)"
|
182
|
+
<a href="#generate-instance_method" title="#generate (instance method)">#<strong>generate</strong> ⇒ Object </a>
|
181
183
|
|
182
184
|
|
183
185
|
|
@@ -199,7 +201,7 @@
|
|
199
201
|
<li class="public ">
|
200
202
|
<span class="summary_signature">
|
201
203
|
|
202
|
-
<a href="#initialize-instance_method" title="#initialize (instance method)"
|
204
|
+
<a href="#initialize-instance_method" title="#initialize (instance method)">#<strong>initialize</strong>(m) ⇒ File </a>
|
203
205
|
|
204
206
|
|
205
207
|
|
@@ -231,7 +233,7 @@
|
|
231
233
|
<div class="method_details first">
|
232
234
|
<h3 class="signature first" id="initialize-instance_method">
|
233
235
|
|
234
|
-
|
236
|
+
#<strong>initialize</strong>(m) ⇒ <tt><span class='object_link'><a href="" title="AutoC::Module::File (class)">File</a></span></tt>
|
235
237
|
|
236
238
|
|
237
239
|
|
@@ -281,7 +283,7 @@
|
|
281
283
|
<div class="method_details first">
|
282
284
|
<h3 class="signature first" id="entities-instance_method">
|
283
285
|
|
284
|
-
|
286
|
+
#<strong>entities</strong> ⇒ <tt>Object</tt> <span class="extras">(readonly)</span>
|
285
287
|
|
286
288
|
|
287
289
|
|
@@ -329,7 +331,7 @@
|
|
329
331
|
<div class="method_details first">
|
330
332
|
<h3 class="signature first" id="<<-instance_method">
|
331
333
|
|
332
|
-
|
334
|
+
#<strong><<</strong>(e) ⇒ <tt>Object</tt>
|
333
335
|
|
334
336
|
|
335
337
|
|
@@ -361,7 +363,7 @@
|
|
361
363
|
<div class="method_details ">
|
362
364
|
<h3 class="signature " id="generate-instance_method">
|
363
365
|
|
364
|
-
|
366
|
+
#<strong>generate</strong> ⇒ <tt>Object</tt>
|
365
367
|
|
366
368
|
|
367
369
|
|
@@ -402,11 +404,12 @@
|
|
402
404
|
|
403
405
|
</div>
|
404
406
|
|
405
|
-
|
406
|
-
Generated on
|
407
|
+
<div id="footer">
|
408
|
+
Generated on Wed Oct 12 12:27:11 2016 by
|
407
409
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
408
|
-
0.
|
410
|
+
0.9.5 (ruby-2.3.1).
|
409
411
|
</div>
|
410
412
|
|
413
|
+
</div>
|
411
414
|
</body>
|
412
415
|
</html>
|