mdarray 0.5.5.2-java → 0.5.6-java

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 (209) hide show
  1. checksums.yaml +4 -4
  2. data/config.rb +29 -95
  3. data/doc/BinaryOperator.html +20 -21
  4. data/doc/BitwiseOperators.html +18 -8
  5. data/doc/BitwiseOperators/BinaryAnd.html +189 -0
  6. data/doc/BitwiseOperators/BinaryLeftShift.html +189 -0
  7. data/doc/BitwiseOperators/BinaryOnesComplement.html +189 -0
  8. data/doc/BitwiseOperators/BinaryOr.html +189 -0
  9. data/doc/BitwiseOperators/BinaryRightShift.html +189 -0
  10. data/doc/BitwiseOperators/BinaryXor.html +189 -0
  11. data/doc/BooleanFunctions.html +18 -8
  12. data/doc/BooleanFunctions/And.html +189 -0
  13. data/doc/BooleanFunctions/Not.html +189 -0
  14. data/doc/BooleanFunctions/Or.html +189 -0
  15. data/doc/BooleanMDArray.html +10 -10
  16. data/doc/ByteMDArray.html +73 -14
  17. data/doc/CernDoubleFunctions.html +208 -0
  18. data/doc/CernFloatFunctions.html +208 -0
  19. data/doc/CernFunctions.html +828 -0
  20. data/doc/CernIntFunctions.html +208 -0
  21. data/doc/CernLongFunctions.html +208 -0
  22. data/doc/CharMDArray.html +181 -0
  23. data/doc/Colt.html +18 -20
  24. data/doc/ComparisonOperators.html +18 -8
  25. data/doc/ComparisonOperators/Eq.html +189 -0
  26. data/doc/ComparisonOperators/Ge.html +189 -0
  27. data/doc/ComparisonOperators/Gt.html +189 -0
  28. data/doc/ComparisonOperators/Le.html +189 -0
  29. data/doc/ComparisonOperators/Lt.html +189 -0
  30. data/doc/Const.html +107 -47
  31. data/doc/Csv.html +325 -113
  32. data/doc/Csv/Dimension.html +771 -0
  33. data/doc/Csv/Dimensions.html +654 -0
  34. data/doc/DDescriptive.html +573 -625
  35. data/doc/DoubleMDArray.html +40 -172
  36. data/doc/DoubleStatList.html +19 -20
  37. data/doc/FastBinaryOperator.html +166 -148
  38. data/doc/FastUnaryOperator.html +104 -109
  39. data/doc/FloatMDArray.html +55 -16
  40. data/doc/FunctionCreation.html +53 -273
  41. data/doc/FunctionMap.html +381 -93
  42. data/doc/GenericFunctions.html +18 -8
  43. data/doc/GenericFunctions/Null.html +187 -0
  44. data/doc/IntMDArray.html +77 -16
  45. data/doc/Java/CernJetMathTdouble/DoubleFunctions.html +120 -0
  46. data/doc/Java/CernJetMathTfloat/FloatFunctions.html +120 -0
  47. data/doc/Java/CernJetMathTint/IntFunctions.html +120 -0
  48. data/doc/Java/CernJetMathTlong/LongFunctions.html +120 -0
  49. data/doc/LazyBinaryOperator.html +714 -0
  50. data/doc/LazyMDArray.html +990 -0
  51. data/doc/LazyMDArray/BinaryComp.html +282 -0
  52. data/doc/LazyMDArray/UnaryComp.html +280 -0
  53. data/doc/LazyUnaryOperator.html +537 -0
  54. data/doc/LongMDArray.html +59 -15
  55. data/doc/MDArray.html +3223 -2181
  56. data/doc/MDArray/Counter.html +321 -1233
  57. data/doc/MDArray/IteratorFast.html +177 -116
  58. data/doc/MDArray/IteratorFastBoolean.html +37 -41
  59. data/doc/MDArray/IteratorFastByte.html +46 -39
  60. data/doc/MDArray/IteratorFastChar.html +37 -41
  61. data/doc/MDArray/IteratorFastDouble.html +37 -41
  62. data/doc/MDArray/IteratorFastFloat.html +37 -41
  63. data/doc/MDArray/IteratorFastInt.html +37 -41
  64. data/doc/MDArray/IteratorFastLong.html +37 -41
  65. data/doc/MDArray/IteratorFastShort.html +37 -41
  66. data/doc/MDArray/Section.html +561 -0
  67. data/doc/Nashorn.html +1407 -0
  68. data/doc/NetCDF.html +749 -0
  69. data/doc/NetCDF/Attribute.html +875 -0
  70. data/doc/NetCDF/AttributeWriter.html +286 -0
  71. data/doc/NetCDF/CDMNode.html +460 -0
  72. data/doc/NetCDF/Dimension.html +559 -0
  73. data/doc/NetCDF/DimensionWriter.html +642 -0
  74. data/doc/NetCDF/File.html +1593 -0
  75. data/doc/NetCDF/FileParent.html +674 -0
  76. data/doc/NetCDF/FileWriter.html +2875 -0
  77. data/doc/NetCDF/Group.html +685 -0
  78. data/doc/NetCDF/GroupWriter.html +851 -0
  79. data/doc/NetCDF/TimeVariable.html +646 -0
  80. data/doc/NetCDF/Variable.html +2994 -0
  81. data/doc/NetCDF/VariableWriter.html +420 -0
  82. data/doc/NonNumericalMDArray.html +11 -11
  83. data/doc/NumericFunctions.html +38 -30
  84. data/doc/NumericFunctions/Abs.html +189 -0
  85. data/doc/NumericFunctions/Add.html +189 -0
  86. data/doc/NumericFunctions/Ceil.html +189 -0
  87. data/doc/NumericFunctions/Cube.html +189 -0
  88. data/doc/NumericFunctions/Div.html +189 -0
  89. data/doc/NumericFunctions/Floor.html +189 -0
  90. data/doc/NumericFunctions/Fourth.html +189 -0
  91. data/doc/NumericFunctions/IsZero.html +189 -0
  92. data/doc/NumericFunctions/Max.html +189 -0
  93. data/doc/NumericFunctions/Min.html +189 -0
  94. data/doc/NumericFunctions/Mul.html +189 -0
  95. data/doc/NumericFunctions/Power.html +189 -0
  96. data/doc/NumericFunctions/Square.html +189 -0
  97. data/doc/NumericFunctions/Sub.html +189 -0
  98. data/doc/NumericFunctions/Truncate.html +189 -0
  99. data/doc/NumericalMDArray.html +14 -15
  100. data/doc/Operator.html +318 -109
  101. data/doc/Proc.html +120 -129
  102. data/doc/RubyBinaryOperator.html +66 -70
  103. data/doc/RubyFunctions.html +572 -27
  104. data/doc/RubyMath.html +18 -8
  105. data/doc/RubyMath/Acos.html +189 -0
  106. data/doc/RubyMath/Acosh.html +189 -0
  107. data/doc/RubyMath/Asin.html +189 -0
  108. data/doc/RubyMath/Asinh.html +189 -0
  109. data/doc/RubyMath/Atan.html +189 -0
  110. data/doc/RubyMath/Atan2.html +189 -0
  111. data/doc/RubyMath/Atanh.html +189 -0
  112. data/doc/RubyMath/Cbrt.html +189 -0
  113. data/doc/RubyMath/Cos.html +189 -0
  114. data/doc/RubyMath/Cosh.html +189 -0
  115. data/doc/RubyMath/Erf.html +189 -0
  116. data/doc/RubyMath/Erfc.html +189 -0
  117. data/doc/RubyMath/Exp.html +189 -0
  118. data/doc/RubyMath/Gamma.html +189 -0
  119. data/doc/RubyMath/Hypot.html +189 -0
  120. data/doc/RubyMath/Ldexp.html +189 -0
  121. data/doc/RubyMath/Log.html +189 -0
  122. data/doc/RubyMath/Log10.html +189 -0
  123. data/doc/RubyMath/Log2.html +189 -0
  124. data/doc/RubyMath/Neg.html +189 -0
  125. data/doc/RubyMath/Sin.html +189 -0
  126. data/doc/RubyMath/Sinh.html +189 -0
  127. data/doc/RubyMath/Sqrt.html +189 -0
  128. data/doc/RubyMath/Tan.html +189 -0
  129. data/doc/RubyMath/Tanh.html +189 -0
  130. data/doc/RubyStats.html +8 -8
  131. data/doc/RubyUnaryOperator.html +61 -65
  132. data/doc/ShortMDArray.html +69 -14
  133. data/doc/Sol.html +700 -0
  134. data/doc/Sol/BarChart.html +181 -0
  135. data/doc/Sol/BaseChart.html +800 -0
  136. data/doc/Sol/Bootstrap.html +1137 -0
  137. data/doc/Sol/Bridge.html +586 -0
  138. data/doc/Sol/Chart.html +1162 -0
  139. data/doc/Sol/CoordinateChart.html +679 -0
  140. data/doc/Sol/Dashboard.html +2094 -0
  141. data/doc/Sol/Dashboard/DCFX.html +786 -0
  142. data/doc/Sol/Dashboard/MyHandle.html +338 -0
  143. data/doc/Sol/Dashboard/MyService.html +202 -0
  144. data/doc/Sol/Dashboard/MyTask.html +291 -0
  145. data/doc/Sol/Interval.html +1213 -0
  146. data/doc/Sol/LineChart.html +346 -0
  147. data/doc/Sol/LinearScale.html +334 -0
  148. data/doc/Sol/Margins.html +219 -0
  149. data/doc/Sol/OrdinalScale.html +263 -0
  150. data/doc/Sol/Scale.html +462 -0
  151. data/doc/Sol/Stack.html +199 -0
  152. data/doc/Sol/TimeScale.html +397 -0
  153. data/doc/StatList.html +110 -125
  154. data/doc/StringMDArray.html +10 -10
  155. data/doc/StructureMDArray.html +10 -10
  156. data/doc/UnaryOperator.html +20 -21
  157. data/doc/UserFunction.html +51 -49
  158. data/doc/_index.html +881 -106
  159. data/doc/class_list.html +8 -3
  160. data/doc/css/style.css +2 -1
  161. data/doc/file.README.html +455 -104
  162. data/doc/file_list.html +7 -2
  163. data/doc/frames.html +5 -7
  164. data/doc/index.html +455 -104
  165. data/doc/js/app.js +7 -2
  166. data/doc/js/full_list.js +11 -3
  167. data/doc/method_list.html +3170 -1233
  168. data/doc/top-level-namespace.html +31 -8
  169. data/lib/colt/matrix/algebra.rb +5 -5
  170. data/lib/mdarray.rb +6 -3
  171. data/lib/mdarray/csv.rb +25 -5
  172. data/lib/mdarray/fast_operators.rb +1 -1
  173. data/lib/mdarray/function_creation.rb +3 -1
  174. data/lib/mdarray/hierarchy.rb +2 -0
  175. data/lib/mdarray/operators.rb +1 -1
  176. data/lib/mdarray/ruby_functions.rb +8 -4
  177. data/lib/mdarray/ruby_math.rb +0 -28
  178. data/test/colt/matrix/test_matrix2d_floatingalgebra.rb +31 -7
  179. data/test/complete.rb +4 -4
  180. data/test/mdarray/PETR4_2014.csv +249 -0
  181. data/test/mdarray/VALE_2014.csv +253 -0
  182. data/test/mdarray/VALE_PETR4.csv +501 -0
  183. data/test/mdarray/arithmetic_casting.rb +1 -0
  184. data/test/mdarray/test_access.rb +1 -0
  185. data/test/mdarray/test_boolean.rb +1 -0
  186. data/test/mdarray/test_comparison.rb +1 -0
  187. data/test/mdarray/test_complete.rb +2 -5
  188. data/test/mdarray/test_counter.rb +1 -0
  189. data/test/mdarray/test_creation.rb +1 -0
  190. data/test/mdarray/test_csv.rb +51 -0
  191. data/test/mdarray/test_error.rb +1 -0
  192. data/test/mdarray/test_non_numeric.rb +1 -1
  193. data/test/mdarray/test_operator.rb +31 -14
  194. data/test/mdarray/test_performance.rb +2 -1
  195. data/test/mdarray/test_printing.rb +1 -0
  196. data/test/mdarray/test_sections.rb +1 -0
  197. data/test/mdarray/test_shape.rb +1 -0
  198. data/test/mdarray/test_trigonometry.rb +1 -0
  199. data/test/mdarray/test_views.rb +1 -0
  200. data/vendor/mdarray.jar +0 -0
  201. data/vendor/{netcdfAll-4.5_0.jar → netcdfAll-4.6.jar} +0 -0
  202. data/vendor/slf4j-jdk14-1.7.12.jar +0 -0
  203. data/version.rb +1 -1
  204. metadata +247 -139
  205. data/lib/env.rb +0 -12
  206. data/lib/mdarray/lazy_mdarray.rb +0 -315
  207. data/lib/mdarray/lazy_operators.rb +0 -174
  208. data/test/env.rb +0 -8
  209. data/test/mdarray/test_lazy.rb +0 -306
@@ -6,18 +6,18 @@
6
6
  <title>
7
7
  Class: StatList
8
8
 
9
- &mdash; Documentation by YARD 0.8.5.2
9
+ &mdash; Documentation by YARD 0.8.7.6
10
10
 
11
11
  </title>
12
12
 
13
- <link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
13
+ <link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
14
14
 
15
- <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
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
  hasFrames = window.top.frames.main ? true : false;
19
19
  relpath = '';
20
- framesUrl = "frames.html#!" + escape(window.location.href);
20
+ framesUrl = "frames.html#!StatList.html";
21
21
  </script>
22
22
 
23
23
 
@@ -169,9 +169,9 @@
169
169
 
170
170
 
171
171
 
172
- <span class="summary_desc"><div class='inline'><hr style="height: 10px">
173
-
174
- <p>Appends the specified element to the end of this list.</p>
172
+ <span class="summary_desc"><div class='inline'>
173
+ <p>------------------------------------------------------------------------------------
174
+ Appends the specified element to the end of this list.</p>
175
175
  </div></span>
176
176
 
177
177
  </li>
@@ -194,9 +194,9 @@
194
194
 
195
195
 
196
196
 
197
- <span class="summary_desc"><div class='inline'><hr style="height: 10px">
198
-
199
- <p>Inserts the specified element before the specified position into the
197
+ <span class="summary_desc"><div class='inline'>
198
+ <p>------------------------------------------------------------------------------------
199
+ Inserts the specified element before the specified position into the
200
200
  receiver.</p>
201
201
  </div></span>
202
202
 
@@ -206,7 +206,7 @@ receiver.</p>
206
206
  <li class="public ">
207
207
  <span class="summary_signature">
208
208
 
209
- <a href="#binary_search-instance_method" title="#binary_search (instance method)">- (Object) <strong>binary_search</strong>(key, from = 0, to = @array_list.size()-1) </a>
209
+ <a href="#binary_search-instance_method" title="#binary_search (instance method)">- (Object) <strong>binary_search</strong>(key, from = 0, to = @array_list.size() - 1) </a>
210
210
 
211
211
 
212
212
 
@@ -221,7 +221,7 @@ receiver.</p>
221
221
 
222
222
 
223
223
  <span class="summary_desc"><div class='inline'>
224
- <p>????????????????????????????.</p>
224
+ <p>------------------------------------------------------------------------------------.</p>
225
225
  </div></span>
226
226
 
227
227
  </li>
@@ -245,7 +245,7 @@ receiver.</p>
245
245
 
246
246
 
247
247
  <span class="summary_desc"><div class='inline'>
248
- <p>????????????????????????????.</p>
248
+ <p>------------------------------------------------------------------------------------.</p>
249
249
  </div></span>
250
250
 
251
251
  </li>
@@ -268,9 +268,9 @@ receiver.</p>
268
268
 
269
269
 
270
270
 
271
- <span class="summary_desc"><div class='inline'><hr style="height: 10px">
272
-
273
- <p>Returns the elements currently stored.</p>
271
+ <span class="summary_desc"><div class='inline'>
272
+ <p>------------------------------------------------------------------------------------
273
+ Returns the elements currently stored.</p>
274
274
  </div></span>
275
275
 
276
276
  </li>
@@ -295,9 +295,9 @@ receiver.</p>
295
295
 
296
296
 
297
297
 
298
- <span class="summary_desc"><div class='inline'><hr style="height: 10px">
299
-
300
- <p>Returns the element at the specified position in the receiver.</p>
298
+ <span class="summary_desc"><div class='inline'>
299
+ <p>------------------------------------------------------------------------------------
300
+ Returns the element at the specified position in the receiver.</p>
301
301
  </div></span>
302
302
 
303
303
  </li>
@@ -306,7 +306,7 @@ receiver.</p>
306
306
  <li class="public ">
307
307
  <span class="summary_signature">
308
308
 
309
- <a href="#index_of-instance_method" title="#index_of (instance method)">- (Object) <strong>index_of</strong>(element, from = 0, to = @array_list.size()-1) </a>
309
+ <a href="#index_of-instance_method" title="#index_of (instance method)">- (Object) <strong>index_of</strong>(element, from = 0, to = @array_list.size() - 1) </a>
310
310
 
311
311
 
312
312
 
@@ -321,7 +321,7 @@ receiver.</p>
321
321
 
322
322
 
323
323
  <span class="summary_desc"><div class='inline'>
324
- <p>????????????????????????????.</p>
324
+ <p>------------------------------------------------------------------------------------.</p>
325
325
  </div></span>
326
326
 
327
327
  </li>
@@ -330,7 +330,7 @@ receiver.</p>
330
330
  <li class="public ">
331
331
  <span class="summary_signature">
332
332
 
333
- <a href="#last_index_of-instance_method" title="#last_index_of (instance method)">- (Object) <strong>last_index_of</strong>(element, from = 0, to = @array_list.size()-1) </a>
333
+ <a href="#last_index_of-instance_method" title="#last_index_of (instance method)">- (Object) <strong>last_index_of</strong>(element, from = 0, to = @array_list.size() - 1) </a>
334
334
 
335
335
 
336
336
 
@@ -345,7 +345,7 @@ receiver.</p>
345
345
 
346
346
 
347
347
  <span class="summary_desc"><div class='inline'>
348
- <p>????????????????????????????.</p>
348
+ <p>------------------------------------------------------------------------------------.</p>
349
349
  </div></span>
350
350
 
351
351
  </li>
@@ -369,7 +369,7 @@ receiver.</p>
369
369
 
370
370
 
371
371
  <span class="summary_desc"><div class='inline'>
372
- <p>????????????????????????????.</p>
372
+ <p>------------------------------------------------------------------------------------.</p>
373
373
  </div></span>
374
374
 
375
375
  </li>
@@ -393,7 +393,7 @@ receiver.</p>
393
393
 
394
394
 
395
395
  <span class="summary_desc"><div class='inline'>
396
- <p>????????????????????????????.</p>
396
+ <p>------------------------------------------------------------------------------------.</p>
397
397
  </div></span>
398
398
 
399
399
  </li>
@@ -419,7 +419,7 @@ receiver.</p>
419
419
 
420
420
 
421
421
  <span class="summary_desc"><div class='inline'>
422
- <p>????????????????????????????.</p>
422
+ <p>------------------------------------------------------------------------------------.</p>
423
423
  </div></span>
424
424
 
425
425
  </li>
@@ -428,7 +428,7 @@ receiver.</p>
428
428
  <li class="public ">
429
429
  <span class="summary_signature">
430
430
 
431
- <a href="#shuffle-instance_method" title="#shuffle (instance method)">- (Object) <strong>shuffle</strong>(from = 0, to = @array_list.size()-1) </a>
431
+ <a href="#shuffle-instance_method" title="#shuffle (instance method)">- (Object) <strong>shuffle</strong>(from = 0, to = @array_list.size() - 1) </a>
432
432
 
433
433
 
434
434
 
@@ -443,7 +443,7 @@ receiver.</p>
443
443
 
444
444
 
445
445
  <span class="summary_desc"><div class='inline'>
446
- <p>????????????????????????????.</p>
446
+ <p>------------------------------------------------------------------------------------.</p>
447
447
  </div></span>
448
448
 
449
449
  </li>
@@ -467,7 +467,7 @@ receiver.</p>
467
467
 
468
468
 
469
469
  <span class="summary_desc"><div class='inline'>
470
- <p>????????????????????????????.</p>
470
+ <p>------------------------------------------------------------------------------------.</p>
471
471
  </div></span>
472
472
 
473
473
  </li>
@@ -491,7 +491,7 @@ receiver.</p>
491
491
 
492
492
 
493
493
  <span class="summary_desc"><div class='inline'>
494
- <p>????????????????????????????.</p>
494
+ <p>------------------------------------------------------------------------------------.</p>
495
495
  </div></span>
496
496
 
497
497
  </li>
@@ -539,10 +539,9 @@ receiver.</p>
539
539
  <td>
540
540
  <pre class="code"><span class="info file"># File 'lib/colt/stat_list.rb', line 31</span>
541
541
 
542
- <span class='rubyid_def def kw'>def</span> <span class='rubyid_array_list identifier id'>array_list</span>
543
- <span class='rubyid_@array_list ivar id'>@array_list</span>
544
- <span class='rubyid_end end kw'>end</span>
545
- </pre>
542
+ <span class='kw'>def</span> <span class='id identifier rubyid_array_list'>array_list</span>
543
+ <span class='ivar'>@array_list</span>
544
+ <span class='kw'>end</span></pre>
546
545
  </td>
547
546
  </tr>
548
547
  </table>
@@ -566,10 +565,10 @@ receiver.</p>
566
565
 
567
566
  </h3><div class="docstring">
568
567
  <div class="discussion">
569
- <hr style="height: 10px">
568
+ <hr>
570
569
 
571
570
  <p>Appends the specified element to the end of this list.</p>
572
- <hr style="height: 10px">
571
+ <hr>
573
572
 
574
573
 
575
574
  </div>
@@ -590,10 +589,9 @@ receiver.</p>
590
589
  <td>
591
590
  <pre class="code"><span class="info file"># File 'lib/colt/stat_list.rb', line 37</span>
592
591
 
593
- <span class='rubyid_def def kw'>def</span> <span class='rubyid_add identifier id'>add</span><span class='lparen token'>(</span><span class='rubyid_element identifier id'>element</span><span class='rparen token'>)</span>
594
- <span class='rubyid_@array_list ivar id'>@array_list</span><span class='dot token'>.</span><span class='rubyid_add identifier id'>add</span><span class='lparen token'>(</span><span class='rubyid_element identifier id'>element</span><span class='rparen token'>)</span>
595
- <span class='rubyid_end end kw'>end</span>
596
- </pre>
592
+ <span class='kw'>def</span> <span class='id identifier rubyid_add'>add</span><span class='lparen'>(</span><span class='id identifier rubyid_element'>element</span><span class='rparen'>)</span>
593
+ <span class='ivar'>@array_list</span><span class='period'>.</span><span class='id identifier rubyid_add'>add</span><span class='lparen'>(</span><span class='id identifier rubyid_element'>element</span><span class='rparen'>)</span>
594
+ <span class='kw'>end</span></pre>
597
595
  </td>
598
596
  </tr>
599
597
  </table>
@@ -610,11 +608,11 @@ receiver.</p>
610
608
 
611
609
  </h3><div class="docstring">
612
610
  <div class="discussion">
613
- <hr style="height: 10px">
611
+ <hr>
614
612
 
615
613
  <p>Inserts the specified element before the specified position into the
616
614
  receiver.</p>
617
- <hr style="height: 10px">
615
+ <hr>
618
616
 
619
617
 
620
618
  </div>
@@ -635,10 +633,9 @@ receiver.</p>
635
633
  <td>
636
634
  <pre class="code"><span class="info file"># File 'lib/colt/stat_list.rb', line 45</span>
637
635
 
638
- <span class='rubyid_def def kw'>def</span> <span class='rubyid_before_insert identifier id'>before_insert</span><span class='lparen token'>(</span><span class='rubyid_index identifier id'>index</span><span class='comma token'>,</span> <span class='rubyid_element identifier id'>element</span><span class='rparen token'>)</span>
639
- <span class='rubyid_@array_list ivar id'>@array_list</span><span class='dot token'>.</span><span class='rubyid_beforeInsert identifier id'>beforeInsert</span><span class='lparen token'>(</span><span class='rubyid_index identifier id'>index</span><span class='comma token'>,</span> <span class='rubyid_element identifier id'>element</span><span class='rparen token'>)</span>
640
- <span class='rubyid_end end kw'>end</span>
641
- </pre>
636
+ <span class='kw'>def</span> <span class='id identifier rubyid_before_insert'>before_insert</span><span class='lparen'>(</span><span class='id identifier rubyid_index'>index</span><span class='comma'>,</span> <span class='id identifier rubyid_element'>element</span><span class='rparen'>)</span>
637
+ <span class='ivar'>@array_list</span><span class='period'>.</span><span class='id identifier rubyid_beforeInsert'>beforeInsert</span><span class='lparen'>(</span><span class='id identifier rubyid_index'>index</span><span class='comma'>,</span> <span class='id identifier rubyid_element'>element</span><span class='rparen'>)</span>
638
+ <span class='kw'>end</span></pre>
642
639
  </td>
643
640
  </tr>
644
641
  </table>
@@ -647,7 +644,7 @@ receiver.</p>
647
644
  <div class="method_details ">
648
645
  <h3 class="signature " id="binary_search-instance_method">
649
646
 
650
- - (<tt>Object</tt>) <strong>binary_search</strong>(key, from = 0, to = @array_list.size()-1)
647
+ - (<tt>Object</tt>) <strong>binary_search</strong>(key, from = 0, to = @array_list.size() - 1)
651
648
 
652
649
 
653
650
 
@@ -655,8 +652,8 @@ receiver.</p>
655
652
 
656
653
  </h3><div class="docstring">
657
654
  <div class="discussion">
658
- <hr style="height: 10px">
659
- <hr style="height: 10px">
655
+ <hr>
656
+ <hr>
660
657
 
661
658
 
662
659
  </div>
@@ -677,10 +674,9 @@ receiver.</p>
677
674
  <td>
678
675
  <pre class="code"><span class="info file"># File 'lib/colt/stat_list.rb', line 53</span>
679
676
 
680
- <span class='rubyid_def def kw'>def</span> <span class='rubyid_binary_search identifier id'>binary_search</span><span class='lparen token'>(</span><span class='rubyid_key identifier id'>key</span><span class='comma token'>,</span> <span class='rubyid_from identifier id'>from</span> <span class='assign token'>=</span> <span class='integer val'>0</span><span class='comma token'>,</span> <span class='rubyid_to identifier id'>to</span> <span class='assign token'>=</span> <span class='rubyid_@array_list ivar id'>@array_list</span><span class='dot token'>.</span><span class='rubyid_size identifier id'>size</span><span class='lparen token'>(</span><span class='rparen token'>)</span> <span class='minus op'>-</span> <span class='integer val'>1</span><span class='rparen token'>)</span>
681
- <span class='rubyid_sorted_data identifier id'>sorted_data</span><span class='dot token'>.</span><span class='rubyid_binarySearchFromTo identifier id'>binarySearchFromTo</span><span class='lparen token'>(</span><span class='rubyid_key identifier id'>key</span><span class='comma token'>,</span> <span class='rubyid_from identifier id'>from</span><span class='comma token'>,</span> <span class='rubyid_to identifier id'>to</span><span class='rparen token'>)</span>
682
- <span class='rubyid_end end kw'>end</span>
683
- </pre>
677
+ <span class='kw'>def</span> <span class='id identifier rubyid_binary_search'>binary_search</span><span class='lparen'>(</span><span class='id identifier rubyid_key'>key</span><span class='comma'>,</span> <span class='id identifier rubyid_from'>from</span> <span class='op'>=</span> <span class='int'>0</span><span class='comma'>,</span> <span class='id identifier rubyid_to'>to</span> <span class='op'>=</span> <span class='ivar'>@array_list</span><span class='period'>.</span><span class='id identifier rubyid_size'>size</span><span class='lparen'>(</span><span class='rparen'>)</span> <span class='op'>-</span> <span class='int'>1</span><span class='rparen'>)</span>
678
+ <span class='id identifier rubyid_sorted_data'>sorted_data</span><span class='period'>.</span><span class='id identifier rubyid_binarySearchFromTo'>binarySearchFromTo</span><span class='lparen'>(</span><span class='id identifier rubyid_key'>key</span><span class='comma'>,</span> <span class='id identifier rubyid_from'>from</span><span class='comma'>,</span> <span class='id identifier rubyid_to'>to</span><span class='rparen'>)</span>
679
+ <span class='kw'>end</span></pre>
684
680
  </td>
685
681
  </tr>
686
682
  </table>
@@ -697,8 +693,8 @@ receiver.</p>
697
693
 
698
694
  </h3><div class="docstring">
699
695
  <div class="discussion">
700
- <hr style="height: 10px">
701
- <hr style="height: 10px">
696
+ <hr>
697
+ <hr>
702
698
 
703
699
 
704
700
  </div>
@@ -719,10 +715,9 @@ receiver.</p>
719
715
  <td>
720
716
  <pre class="code"><span class="info file"># File 'lib/colt/stat_list.rb', line 61</span>
721
717
 
722
- <span class='rubyid_def def kw'>def</span> <span class='rubyid_copy identifier id'>copy</span>
723
- <span class='rubyid_DoubleStatList constant id'>DoubleStatList</span><span class='dot token'>.</span><span class='rubyid_new identifier id'>new</span><span class='lparen token'>(</span><span class='rubyid_@array_list ivar id'>@array_list</span><span class='dot token'>.</span><span class='rubyid_copy identifier id'>copy</span><span class='rparen token'>)</span>
724
- <span class='rubyid_end end kw'>end</span>
725
- </pre>
718
+ <span class='kw'>def</span> <span class='id identifier rubyid_copy'>copy</span>
719
+ <span class='const'>DoubleStatList</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span><span class='lparen'>(</span><span class='ivar'>@array_list</span><span class='period'>.</span><span class='id identifier rubyid_copy'>copy</span><span class='rparen'>)</span>
720
+ <span class='kw'>end</span></pre>
726
721
  </td>
727
722
  </tr>
728
723
  </table>
@@ -739,10 +734,10 @@ receiver.</p>
739
734
 
740
735
  </h3><div class="docstring">
741
736
  <div class="discussion">
742
- <hr style="height: 10px">
737
+ <hr>
743
738
 
744
739
  <p>Returns the elements currently stored. Trims the list to the maximum size.</p>
745
- <hr style="height: 10px">
740
+ <hr>
746
741
 
747
742
 
748
743
  </div>
@@ -764,11 +759,10 @@ receiver.</p>
764
759
  <td>
765
760
  <pre class="code"><span class="info file"># File 'lib/colt/stat_list.rb', line 69</span>
766
761
 
767
- <span class='rubyid_def def kw'>def</span> <span class='rubyid_elements identifier id'>elements</span>
768
- <span class='rubyid_@array_list ivar id'>@array_list</span><span class='dot token'>.</span><span class='rubyid_trimToSize identifier id'>trimToSize</span>
769
- <span class='rubyid_@array_list ivar id'>@array_list</span><span class='dot token'>.</span><span class='rubyid_elements identifier id'>elements</span><span class='lparen token'>(</span><span class='rparen token'>)</span><span class='dot token'>.</span><span class='rubyid_to_a identifier id'>to_a</span>
770
- <span class='rubyid_end end kw'>end</span>
771
- </pre>
762
+ <span class='kw'>def</span> <span class='id identifier rubyid_elements'>elements</span>
763
+ <span class='ivar'>@array_list</span><span class='period'>.</span><span class='id identifier rubyid_trimToSize'>trimToSize</span>
764
+ <span class='ivar'>@array_list</span><span class='period'>.</span><span class='id identifier rubyid_elements'>elements</span><span class='lparen'>(</span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_to_a'>to_a</span>
765
+ <span class='kw'>end</span></pre>
772
766
  </td>
773
767
  </tr>
774
768
  </table>
@@ -789,10 +783,10 @@ receiver.</p>
789
783
 
790
784
  </h3><div class="docstring">
791
785
  <div class="discussion">
792
- <hr style="height: 10px">
786
+ <hr>
793
787
 
794
788
  <p>Returns the element at the specified position in the receiver.</p>
795
- <hr style="height: 10px">
789
+ <hr>
796
790
 
797
791
 
798
792
  </div>
@@ -813,10 +807,9 @@ receiver.</p>
813
807
  <td>
814
808
  <pre class="code"><span class="info file"># File 'lib/colt/stat_list.rb', line 78</span>
815
809
 
816
- <span class='rubyid_def def kw'>def</span> <span class='rubyid_get identifier id'>get</span><span class='lparen token'>(</span><span class='rubyid_index identifier id'>index</span><span class='rparen token'>)</span>
817
- <span class='rubyid_@array_list ivar id'>@array_list</span><span class='dot token'>.</span><span class='rubyid_get identifier id'>get</span><span class='lparen token'>(</span><span class='rubyid_index identifier id'>index</span><span class='rparen token'>)</span>
818
- <span class='rubyid_end end kw'>end</span>
819
- </pre>
810
+ <span class='kw'>def</span> <span class='id identifier rubyid_get'>get</span><span class='lparen'>(</span><span class='id identifier rubyid_index'>index</span><span class='rparen'>)</span>
811
+ <span class='ivar'>@array_list</span><span class='period'>.</span><span class='id identifier rubyid_get'>get</span><span class='lparen'>(</span><span class='id identifier rubyid_index'>index</span><span class='rparen'>)</span>
812
+ <span class='kw'>end</span></pre>
820
813
  </td>
821
814
  </tr>
822
815
  </table>
@@ -825,7 +818,7 @@ receiver.</p>
825
818
  <div class="method_details ">
826
819
  <h3 class="signature " id="index_of-instance_method">
827
820
 
828
- - (<tt>Object</tt>) <strong>index_of</strong>(element, from = 0, to = @array_list.size()-1)
821
+ - (<tt>Object</tt>) <strong>index_of</strong>(element, from = 0, to = @array_list.size() - 1)
829
822
 
830
823
 
831
824
 
@@ -833,8 +826,8 @@ receiver.</p>
833
826
 
834
827
  </h3><div class="docstring">
835
828
  <div class="discussion">
836
- <hr style="height: 10px">
837
- <hr style="height: 10px">
829
+ <hr>
830
+ <hr>
838
831
 
839
832
 
840
833
  </div>
@@ -855,10 +848,9 @@ receiver.</p>
855
848
  <td>
856
849
  <pre class="code"><span class="info file"># File 'lib/colt/stat_list.rb', line 88</span>
857
850
 
858
- <span class='rubyid_def def kw'>def</span> <span class='rubyid_index_of identifier id'>index_of</span><span class='lparen token'>(</span><span class='rubyid_element identifier id'>element</span><span class='comma token'>,</span> <span class='rubyid_from identifier id'>from</span> <span class='assign token'>=</span> <span class='integer val'>0</span><span class='comma token'>,</span> <span class='rubyid_to identifier id'>to</span> <span class='assign token'>=</span> <span class='rubyid_@array_list ivar id'>@array_list</span><span class='dot token'>.</span><span class='rubyid_size identifier id'>size</span><span class='lparen token'>(</span><span class='rparen token'>)</span> <span class='minus op'>-</span> <span class='integer val'>1</span><span class='rparen token'>)</span>
859
- <span class='rubyid_@array_list ivar id'>@array_list</span><span class='dot token'>.</span><span class='rubyid_indexOfFromTo identifier id'>indexOfFromTo</span><span class='lparen token'>(</span><span class='rubyid_element identifier id'>element</span><span class='comma token'>,</span> <span class='rubyid_from identifier id'>from</span><span class='comma token'>,</span> <span class='rubyid_to identifier id'>to</span><span class='rparen token'>)</span>
860
- <span class='rubyid_end end kw'>end</span>
861
- </pre>
851
+ <span class='kw'>def</span> <span class='id identifier rubyid_index_of'>index_of</span><span class='lparen'>(</span><span class='id identifier rubyid_element'>element</span><span class='comma'>,</span> <span class='id identifier rubyid_from'>from</span> <span class='op'>=</span> <span class='int'>0</span><span class='comma'>,</span> <span class='id identifier rubyid_to'>to</span> <span class='op'>=</span> <span class='ivar'>@array_list</span><span class='period'>.</span><span class='id identifier rubyid_size'>size</span><span class='lparen'>(</span><span class='rparen'>)</span> <span class='op'>-</span> <span class='int'>1</span><span class='rparen'>)</span>
852
+ <span class='ivar'>@array_list</span><span class='period'>.</span><span class='id identifier rubyid_indexOfFromTo'>indexOfFromTo</span><span class='lparen'>(</span><span class='id identifier rubyid_element'>element</span><span class='comma'>,</span> <span class='id identifier rubyid_from'>from</span><span class='comma'>,</span> <span class='id identifier rubyid_to'>to</span><span class='rparen'>)</span>
853
+ <span class='kw'>end</span></pre>
862
854
  </td>
863
855
  </tr>
864
856
  </table>
@@ -867,7 +859,7 @@ receiver.</p>
867
859
  <div class="method_details ">
868
860
  <h3 class="signature " id="last_index_of-instance_method">
869
861
 
870
- - (<tt>Object</tt>) <strong>last_index_of</strong>(element, from = 0, to = @array_list.size()-1)
862
+ - (<tt>Object</tt>) <strong>last_index_of</strong>(element, from = 0, to = @array_list.size() - 1)
871
863
 
872
864
 
873
865
 
@@ -875,8 +867,8 @@ receiver.</p>
875
867
 
876
868
  </h3><div class="docstring">
877
869
  <div class="discussion">
878
- <hr style="height: 10px">
879
- <hr style="height: 10px">
870
+ <hr>
871
+ <hr>
880
872
 
881
873
 
882
874
  </div>
@@ -897,10 +889,9 @@ receiver.</p>
897
889
  <td>
898
890
  <pre class="code"><span class="info file"># File 'lib/colt/stat_list.rb', line 96</span>
899
891
 
900
- <span class='rubyid_def def kw'>def</span> <span class='rubyid_last_index_of identifier id'>last_index_of</span><span class='lparen token'>(</span><span class='rubyid_element identifier id'>element</span><span class='comma token'>,</span> <span class='rubyid_from identifier id'>from</span> <span class='assign token'>=</span> <span class='integer val'>0</span><span class='comma token'>,</span> <span class='rubyid_to identifier id'>to</span> <span class='assign token'>=</span> <span class='rubyid_@array_list ivar id'>@array_list</span><span class='dot token'>.</span><span class='rubyid_size identifier id'>size</span><span class='lparen token'>(</span><span class='rparen token'>)</span> <span class='minus op'>-</span> <span class='integer val'>1</span><span class='rparen token'>)</span>
901
- <span class='rubyid_@array_list ivar id'>@array_list</span><span class='dot token'>.</span><span class='rubyid_lastIndexOfFromTo identifier id'>lastIndexOfFromTo</span><span class='lparen token'>(</span><span class='rubyid_element identifier id'>element</span><span class='comma token'>,</span> <span class='rubyid_from identifier id'>from</span><span class='comma token'>,</span> <span class='rubyid_to identifier id'>to</span><span class='rparen token'>)</span>
902
- <span class='rubyid_end end kw'>end</span>
903
- </pre>
892
+ <span class='kw'>def</span> <span class='id identifier rubyid_last_index_of'>last_index_of</span><span class='lparen'>(</span><span class='id identifier rubyid_element'>element</span><span class='comma'>,</span> <span class='id identifier rubyid_from'>from</span> <span class='op'>=</span> <span class='int'>0</span><span class='comma'>,</span> <span class='id identifier rubyid_to'>to</span> <span class='op'>=</span> <span class='ivar'>@array_list</span><span class='period'>.</span><span class='id identifier rubyid_size'>size</span><span class='lparen'>(</span><span class='rparen'>)</span> <span class='op'>-</span> <span class='int'>1</span><span class='rparen'>)</span>
893
+ <span class='ivar'>@array_list</span><span class='period'>.</span><span class='id identifier rubyid_lastIndexOfFromTo'>lastIndexOfFromTo</span><span class='lparen'>(</span><span class='id identifier rubyid_element'>element</span><span class='comma'>,</span> <span class='id identifier rubyid_from'>from</span><span class='comma'>,</span> <span class='id identifier rubyid_to'>to</span><span class='rparen'>)</span>
894
+ <span class='kw'>end</span></pre>
904
895
  </td>
905
896
  </tr>
906
897
  </table>
@@ -917,8 +908,8 @@ receiver.</p>
917
908
 
918
909
  </h3><div class="docstring">
919
910
  <div class="discussion">
920
- <hr style="height: 10px">
921
- <hr style="height: 10px">
911
+ <hr>
912
+ <hr>
922
913
 
923
914
 
924
915
  </div>
@@ -939,10 +930,9 @@ receiver.</p>
939
930
  <td>
940
931
  <pre class="code"><span class="info file"># File 'lib/colt/stat_list.rb', line 138</span>
941
932
 
942
- <span class='rubyid_def def kw'>def</span> <span class='rubyid_print identifier id'>print</span>
943
- <span class='rubyid_puts identifier id'>puts</span> <span class='rubyid_@array_list ivar id'>@array_list</span><span class='dot token'>.</span><span class='rubyid_toString identifier id'>toString</span><span class='lparen token'>(</span><span class='rparen token'>)</span>
944
- <span class='rubyid_end end kw'>end</span>
945
- </pre>
933
+ <span class='kw'>def</span> <span class='id identifier rubyid_print'>print</span>
934
+ <span class='id identifier rubyid_puts'>puts</span> <span class='ivar'>@array_list</span><span class='period'>.</span><span class='id identifier rubyid_toString'>toString</span><span class='lparen'>(</span><span class='rparen'>)</span>
935
+ <span class='kw'>end</span></pre>
946
936
  </td>
947
937
  </tr>
948
938
  </table>
@@ -959,8 +949,8 @@ receiver.</p>
959
949
 
960
950
  </h3><div class="docstring">
961
951
  <div class="discussion">
962
- <hr style="height: 10px">
963
- <hr style="height: 10px">
952
+ <hr>
953
+ <hr>
964
954
 
965
955
 
966
956
  </div>
@@ -981,10 +971,9 @@ receiver.</p>
981
971
  <td>
982
972
  <pre class="code"><span class="info file"># File 'lib/colt/stat_list.rb', line 104</span>
983
973
 
984
- <span class='rubyid_def def kw'>def</span> <span class='rubyid_reverse identifier id'>reverse</span>
985
- <span class='rubyid_@array_list ivar id'>@array_list</span><span class='dot token'>.</span><span class='rubyid_reverse identifier id'>reverse</span><span class='lparen token'>(</span><span class='rparen token'>)</span>
986
- <span class='rubyid_end end kw'>end</span>
987
- </pre>
974
+ <span class='kw'>def</span> <span class='id identifier rubyid_reverse'>reverse</span>
975
+ <span class='ivar'>@array_list</span><span class='period'>.</span><span class='id identifier rubyid_reverse'>reverse</span><span class='lparen'>(</span><span class='rparen'>)</span>
976
+ <span class='kw'>end</span></pre>
988
977
  </td>
989
978
  </tr>
990
979
  </table>
@@ -1005,8 +994,8 @@ receiver.</p>
1005
994
 
1006
995
  </h3><div class="docstring">
1007
996
  <div class="discussion">
1008
- <hr style="height: 10px">
1009
- <hr style="height: 10px">
997
+ <hr>
998
+ <hr>
1010
999
 
1011
1000
 
1012
1001
  </div>
@@ -1027,10 +1016,9 @@ receiver.</p>
1027
1016
  <td>
1028
1017
  <pre class="code"><span class="info file"># File 'lib/colt/stat_list.rb', line 112</span>
1029
1018
 
1030
- <span class='rubyid_def def kw'>def</span> <span class='rubyid_set identifier id'>set</span><span class='lparen token'>(</span><span class='rubyid_index identifier id'>index</span><span class='comma token'>,</span> <span class='rubyid_element identifier id'>element</span><span class='rparen token'>)</span>
1031
- <span class='rubyid_@array_list ivar id'>@array_list</span><span class='dot token'>.</span><span class='rubyid_set identifier id'>set</span><span class='lparen token'>(</span><span class='rubyid_index identifier id'>index</span><span class='comma token'>,</span> <span class='rubyid_element identifier id'>element</span><span class='rparen token'>)</span>
1032
- <span class='rubyid_end end kw'>end</span>
1033
- </pre>
1019
+ <span class='kw'>def</span> <span class='id identifier rubyid_set'>set</span><span class='lparen'>(</span><span class='id identifier rubyid_index'>index</span><span class='comma'>,</span> <span class='id identifier rubyid_element'>element</span><span class='rparen'>)</span>
1020
+ <span class='ivar'>@array_list</span><span class='period'>.</span><span class='id identifier rubyid_set'>set</span><span class='lparen'>(</span><span class='id identifier rubyid_index'>index</span><span class='comma'>,</span> <span class='id identifier rubyid_element'>element</span><span class='rparen'>)</span>
1021
+ <span class='kw'>end</span></pre>
1034
1022
  </td>
1035
1023
  </tr>
1036
1024
  </table>
@@ -1039,7 +1027,7 @@ receiver.</p>
1039
1027
  <div class="method_details ">
1040
1028
  <h3 class="signature " id="shuffle-instance_method">
1041
1029
 
1042
- - (<tt>Object</tt>) <strong>shuffle</strong>(from = 0, to = @array_list.size()-1)
1030
+ - (<tt>Object</tt>) <strong>shuffle</strong>(from = 0, to = @array_list.size() - 1)
1043
1031
 
1044
1032
 
1045
1033
 
@@ -1047,8 +1035,8 @@ receiver.</p>
1047
1035
 
1048
1036
  </h3><div class="docstring">
1049
1037
  <div class="discussion">
1050
- <hr style="height: 10px">
1051
- <hr style="height: 10px">
1038
+ <hr>
1039
+ <hr>
1052
1040
 
1053
1041
 
1054
1042
  </div>
@@ -1069,10 +1057,9 @@ receiver.</p>
1069
1057
  <td>
1070
1058
  <pre class="code"><span class="info file"># File 'lib/colt/stat_list.rb', line 122</span>
1071
1059
 
1072
- <span class='rubyid_def def kw'>def</span> <span class='rubyid_shuffle identifier id'>shuffle</span><span class='lparen token'>(</span><span class='rubyid_from identifier id'>from</span> <span class='assign token'>=</span> <span class='integer val'>0</span><span class='comma token'>,</span> <span class='rubyid_to identifier id'>to</span> <span class='assign token'>=</span> <span class='rubyid_@array_list ivar id'>@array_list</span><span class='dot token'>.</span><span class='rubyid_size identifier id'>size</span><span class='lparen token'>(</span><span class='rparen token'>)</span> <span class='minus op'>-</span> <span class='integer val'>1</span><span class='rparen token'>)</span>
1073
- <span class='rubyid_@array_list ivar id'>@array_list</span><span class='dot token'>.</span><span class='rubyid_shuffleFromTo identifier id'>shuffleFromTo</span><span class='lparen token'>(</span><span class='rubyid_from identifier id'>from</span><span class='comma token'>,</span> <span class='rubyid_to identifier id'>to</span><span class='rparen token'>)</span>
1074
- <span class='rubyid_end end kw'>end</span>
1075
- </pre>
1060
+ <span class='kw'>def</span> <span class='id identifier rubyid_shuffle'>shuffle</span><span class='lparen'>(</span><span class='id identifier rubyid_from'>from</span> <span class='op'>=</span> <span class='int'>0</span><span class='comma'>,</span> <span class='id identifier rubyid_to'>to</span> <span class='op'>=</span> <span class='ivar'>@array_list</span><span class='period'>.</span><span class='id identifier rubyid_size'>size</span><span class='lparen'>(</span><span class='rparen'>)</span> <span class='op'>-</span> <span class='int'>1</span><span class='rparen'>)</span>
1061
+ <span class='ivar'>@array_list</span><span class='period'>.</span><span class='id identifier rubyid_shuffleFromTo'>shuffleFromTo</span><span class='lparen'>(</span><span class='id identifier rubyid_from'>from</span><span class='comma'>,</span> <span class='id identifier rubyid_to'>to</span><span class='rparen'>)</span>
1062
+ <span class='kw'>end</span></pre>
1076
1063
  </td>
1077
1064
  </tr>
1078
1065
  </table>
@@ -1089,8 +1076,8 @@ receiver.</p>
1089
1076
 
1090
1077
  </h3><div class="docstring">
1091
1078
  <div class="discussion">
1092
- <hr style="height: 10px">
1093
- <hr style="height: 10px">
1079
+ <hr>
1080
+ <hr>
1094
1081
 
1095
1082
 
1096
1083
  </div>
@@ -1111,10 +1098,9 @@ receiver.</p>
1111
1098
  <td>
1112
1099
  <pre class="code"><span class="info file"># File 'lib/colt/stat_list.rb', line 146</span>
1113
1100
 
1114
- <span class='rubyid_def def kw'>def</span> <span class='rubyid_to_s identifier id'>to_s</span>
1115
- <span class='rubyid_print identifier id'>print</span>
1116
- <span class='rubyid_end end kw'>end</span>
1117
- </pre>
1101
+ <span class='kw'>def</span> <span class='id identifier rubyid_to_s'>to_s</span>
1102
+ <span class='id identifier rubyid_print'>print</span>
1103
+ <span class='kw'>end</span></pre>
1118
1104
  </td>
1119
1105
  </tr>
1120
1106
  </table>
@@ -1131,8 +1117,8 @@ receiver.</p>
1131
1117
 
1132
1118
  </h3><div class="docstring">
1133
1119
  <div class="discussion">
1134
- <hr style="height: 10px">
1135
- <hr style="height: 10px">
1120
+ <hr>
1121
+ <hr>
1136
1122
 
1137
1123
 
1138
1124
  </div>
@@ -1153,10 +1139,9 @@ receiver.</p>
1153
1139
  <td>
1154
1140
  <pre class="code"><span class="info file"># File 'lib/colt/stat_list.rb', line 130</span>
1155
1141
 
1156
- <span class='rubyid_def def kw'>def</span> <span class='rubyid_trim_to_size identifier id'>trim_to_size</span>
1157
- <span class='rubyid_@array_list ivar id'>@array_list</span><span class='dot token'>.</span><span class='rubyid_trimToSize identifier id'>trimToSize</span><span class='lparen token'>(</span><span class='rparen token'>)</span>
1158
- <span class='rubyid_end end kw'>end</span>
1159
- </pre>
1142
+ <span class='kw'>def</span> <span class='id identifier rubyid_trim_to_size'>trim_to_size</span>
1143
+ <span class='ivar'>@array_list</span><span class='period'>.</span><span class='id identifier rubyid_trimToSize'>trimToSize</span><span class='lparen'>(</span><span class='rparen'>)</span>
1144
+ <span class='kw'>end</span></pre>
1160
1145
  </td>
1161
1146
  </tr>
1162
1147
  </table>
@@ -1167,9 +1152,9 @@ receiver.</p>
1167
1152
  </div>
1168
1153
 
1169
1154
  <div id="footer">
1170
- Generated on Thu May 16 12:48:37 2013 by
1155
+ Generated on Tue Jul 14 18:08:59 2015 by
1171
1156
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1172
- 0.8.5.2 (ruby-1.9.3).
1157
+ 0.8.7.6 (ruby-1.9.3).
1173
1158
  </div>
1174
1159
 
1175
1160
  </body>