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.
- checksums.yaml +4 -4
- data/config.rb +29 -95
- data/doc/BinaryOperator.html +20 -21
- data/doc/BitwiseOperators.html +18 -8
- data/doc/BitwiseOperators/BinaryAnd.html +189 -0
- data/doc/BitwiseOperators/BinaryLeftShift.html +189 -0
- data/doc/BitwiseOperators/BinaryOnesComplement.html +189 -0
- data/doc/BitwiseOperators/BinaryOr.html +189 -0
- data/doc/BitwiseOperators/BinaryRightShift.html +189 -0
- data/doc/BitwiseOperators/BinaryXor.html +189 -0
- data/doc/BooleanFunctions.html +18 -8
- data/doc/BooleanFunctions/And.html +189 -0
- data/doc/BooleanFunctions/Not.html +189 -0
- data/doc/BooleanFunctions/Or.html +189 -0
- data/doc/BooleanMDArray.html +10 -10
- data/doc/ByteMDArray.html +73 -14
- data/doc/CernDoubleFunctions.html +208 -0
- data/doc/CernFloatFunctions.html +208 -0
- data/doc/CernFunctions.html +828 -0
- data/doc/CernIntFunctions.html +208 -0
- data/doc/CernLongFunctions.html +208 -0
- data/doc/CharMDArray.html +181 -0
- data/doc/Colt.html +18 -20
- data/doc/ComparisonOperators.html +18 -8
- data/doc/ComparisonOperators/Eq.html +189 -0
- data/doc/ComparisonOperators/Ge.html +189 -0
- data/doc/ComparisonOperators/Gt.html +189 -0
- data/doc/ComparisonOperators/Le.html +189 -0
- data/doc/ComparisonOperators/Lt.html +189 -0
- data/doc/Const.html +107 -47
- data/doc/Csv.html +325 -113
- data/doc/Csv/Dimension.html +771 -0
- data/doc/Csv/Dimensions.html +654 -0
- data/doc/DDescriptive.html +573 -625
- data/doc/DoubleMDArray.html +40 -172
- data/doc/DoubleStatList.html +19 -20
- data/doc/FastBinaryOperator.html +166 -148
- data/doc/FastUnaryOperator.html +104 -109
- data/doc/FloatMDArray.html +55 -16
- data/doc/FunctionCreation.html +53 -273
- data/doc/FunctionMap.html +381 -93
- data/doc/GenericFunctions.html +18 -8
- data/doc/GenericFunctions/Null.html +187 -0
- data/doc/IntMDArray.html +77 -16
- data/doc/Java/CernJetMathTdouble/DoubleFunctions.html +120 -0
- data/doc/Java/CernJetMathTfloat/FloatFunctions.html +120 -0
- data/doc/Java/CernJetMathTint/IntFunctions.html +120 -0
- data/doc/Java/CernJetMathTlong/LongFunctions.html +120 -0
- data/doc/LazyBinaryOperator.html +714 -0
- data/doc/LazyMDArray.html +990 -0
- data/doc/LazyMDArray/BinaryComp.html +282 -0
- data/doc/LazyMDArray/UnaryComp.html +280 -0
- data/doc/LazyUnaryOperator.html +537 -0
- data/doc/LongMDArray.html +59 -15
- data/doc/MDArray.html +3223 -2181
- data/doc/MDArray/Counter.html +321 -1233
- data/doc/MDArray/IteratorFast.html +177 -116
- data/doc/MDArray/IteratorFastBoolean.html +37 -41
- data/doc/MDArray/IteratorFastByte.html +46 -39
- data/doc/MDArray/IteratorFastChar.html +37 -41
- data/doc/MDArray/IteratorFastDouble.html +37 -41
- data/doc/MDArray/IteratorFastFloat.html +37 -41
- data/doc/MDArray/IteratorFastInt.html +37 -41
- data/doc/MDArray/IteratorFastLong.html +37 -41
- data/doc/MDArray/IteratorFastShort.html +37 -41
- data/doc/MDArray/Section.html +561 -0
- data/doc/Nashorn.html +1407 -0
- data/doc/NetCDF.html +749 -0
- data/doc/NetCDF/Attribute.html +875 -0
- data/doc/NetCDF/AttributeWriter.html +286 -0
- data/doc/NetCDF/CDMNode.html +460 -0
- data/doc/NetCDF/Dimension.html +559 -0
- data/doc/NetCDF/DimensionWriter.html +642 -0
- data/doc/NetCDF/File.html +1593 -0
- data/doc/NetCDF/FileParent.html +674 -0
- data/doc/NetCDF/FileWriter.html +2875 -0
- data/doc/NetCDF/Group.html +685 -0
- data/doc/NetCDF/GroupWriter.html +851 -0
- data/doc/NetCDF/TimeVariable.html +646 -0
- data/doc/NetCDF/Variable.html +2994 -0
- data/doc/NetCDF/VariableWriter.html +420 -0
- data/doc/NonNumericalMDArray.html +11 -11
- data/doc/NumericFunctions.html +38 -30
- data/doc/NumericFunctions/Abs.html +189 -0
- data/doc/NumericFunctions/Add.html +189 -0
- data/doc/NumericFunctions/Ceil.html +189 -0
- data/doc/NumericFunctions/Cube.html +189 -0
- data/doc/NumericFunctions/Div.html +189 -0
- data/doc/NumericFunctions/Floor.html +189 -0
- data/doc/NumericFunctions/Fourth.html +189 -0
- data/doc/NumericFunctions/IsZero.html +189 -0
- data/doc/NumericFunctions/Max.html +189 -0
- data/doc/NumericFunctions/Min.html +189 -0
- data/doc/NumericFunctions/Mul.html +189 -0
- data/doc/NumericFunctions/Power.html +189 -0
- data/doc/NumericFunctions/Square.html +189 -0
- data/doc/NumericFunctions/Sub.html +189 -0
- data/doc/NumericFunctions/Truncate.html +189 -0
- data/doc/NumericalMDArray.html +14 -15
- data/doc/Operator.html +318 -109
- data/doc/Proc.html +120 -129
- data/doc/RubyBinaryOperator.html +66 -70
- data/doc/RubyFunctions.html +572 -27
- data/doc/RubyMath.html +18 -8
- data/doc/RubyMath/Acos.html +189 -0
- data/doc/RubyMath/Acosh.html +189 -0
- data/doc/RubyMath/Asin.html +189 -0
- data/doc/RubyMath/Asinh.html +189 -0
- data/doc/RubyMath/Atan.html +189 -0
- data/doc/RubyMath/Atan2.html +189 -0
- data/doc/RubyMath/Atanh.html +189 -0
- data/doc/RubyMath/Cbrt.html +189 -0
- data/doc/RubyMath/Cos.html +189 -0
- data/doc/RubyMath/Cosh.html +189 -0
- data/doc/RubyMath/Erf.html +189 -0
- data/doc/RubyMath/Erfc.html +189 -0
- data/doc/RubyMath/Exp.html +189 -0
- data/doc/RubyMath/Gamma.html +189 -0
- data/doc/RubyMath/Hypot.html +189 -0
- data/doc/RubyMath/Ldexp.html +189 -0
- data/doc/RubyMath/Log.html +189 -0
- data/doc/RubyMath/Log10.html +189 -0
- data/doc/RubyMath/Log2.html +189 -0
- data/doc/RubyMath/Neg.html +189 -0
- data/doc/RubyMath/Sin.html +189 -0
- data/doc/RubyMath/Sinh.html +189 -0
- data/doc/RubyMath/Sqrt.html +189 -0
- data/doc/RubyMath/Tan.html +189 -0
- data/doc/RubyMath/Tanh.html +189 -0
- data/doc/RubyStats.html +8 -8
- data/doc/RubyUnaryOperator.html +61 -65
- data/doc/ShortMDArray.html +69 -14
- data/doc/Sol.html +700 -0
- data/doc/Sol/BarChart.html +181 -0
- data/doc/Sol/BaseChart.html +800 -0
- data/doc/Sol/Bootstrap.html +1137 -0
- data/doc/Sol/Bridge.html +586 -0
- data/doc/Sol/Chart.html +1162 -0
- data/doc/Sol/CoordinateChart.html +679 -0
- data/doc/Sol/Dashboard.html +2094 -0
- data/doc/Sol/Dashboard/DCFX.html +786 -0
- data/doc/Sol/Dashboard/MyHandle.html +338 -0
- data/doc/Sol/Dashboard/MyService.html +202 -0
- data/doc/Sol/Dashboard/MyTask.html +291 -0
- data/doc/Sol/Interval.html +1213 -0
- data/doc/Sol/LineChart.html +346 -0
- data/doc/Sol/LinearScale.html +334 -0
- data/doc/Sol/Margins.html +219 -0
- data/doc/Sol/OrdinalScale.html +263 -0
- data/doc/Sol/Scale.html +462 -0
- data/doc/Sol/Stack.html +199 -0
- data/doc/Sol/TimeScale.html +397 -0
- data/doc/StatList.html +110 -125
- data/doc/StringMDArray.html +10 -10
- data/doc/StructureMDArray.html +10 -10
- data/doc/UnaryOperator.html +20 -21
- data/doc/UserFunction.html +51 -49
- data/doc/_index.html +881 -106
- data/doc/class_list.html +8 -3
- data/doc/css/style.css +2 -1
- data/doc/file.README.html +455 -104
- data/doc/file_list.html +7 -2
- data/doc/frames.html +5 -7
- data/doc/index.html +455 -104
- data/doc/js/app.js +7 -2
- data/doc/js/full_list.js +11 -3
- data/doc/method_list.html +3170 -1233
- data/doc/top-level-namespace.html +31 -8
- data/lib/colt/matrix/algebra.rb +5 -5
- data/lib/mdarray.rb +6 -3
- data/lib/mdarray/csv.rb +25 -5
- data/lib/mdarray/fast_operators.rb +1 -1
- data/lib/mdarray/function_creation.rb +3 -1
- data/lib/mdarray/hierarchy.rb +2 -0
- data/lib/mdarray/operators.rb +1 -1
- data/lib/mdarray/ruby_functions.rb +8 -4
- data/lib/mdarray/ruby_math.rb +0 -28
- data/test/colt/matrix/test_matrix2d_floatingalgebra.rb +31 -7
- data/test/complete.rb +4 -4
- data/test/mdarray/PETR4_2014.csv +249 -0
- data/test/mdarray/VALE_2014.csv +253 -0
- data/test/mdarray/VALE_PETR4.csv +501 -0
- data/test/mdarray/arithmetic_casting.rb +1 -0
- data/test/mdarray/test_access.rb +1 -0
- data/test/mdarray/test_boolean.rb +1 -0
- data/test/mdarray/test_comparison.rb +1 -0
- data/test/mdarray/test_complete.rb +2 -5
- data/test/mdarray/test_counter.rb +1 -0
- data/test/mdarray/test_creation.rb +1 -0
- data/test/mdarray/test_csv.rb +51 -0
- data/test/mdarray/test_error.rb +1 -0
- data/test/mdarray/test_non_numeric.rb +1 -1
- data/test/mdarray/test_operator.rb +31 -14
- data/test/mdarray/test_performance.rb +2 -1
- data/test/mdarray/test_printing.rb +1 -0
- data/test/mdarray/test_sections.rb +1 -0
- data/test/mdarray/test_shape.rb +1 -0
- data/test/mdarray/test_trigonometry.rb +1 -0
- data/test/mdarray/test_views.rb +1 -0
- data/vendor/mdarray.jar +0 -0
- data/vendor/{netcdfAll-4.5_0.jar → netcdfAll-4.6.jar} +0 -0
- data/vendor/slf4j-jdk14-1.7.12.jar +0 -0
- data/version.rb +1 -1
- metadata +247 -139
- data/lib/env.rb +0 -12
- data/lib/mdarray/lazy_mdarray.rb +0 -315
- data/lib/mdarray/lazy_operators.rb +0 -174
- data/test/env.rb +0 -8
- data/test/mdarray/test_lazy.rb +0 -306
|
@@ -6,18 +6,18 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: MDArray::IteratorFastBoolean
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.8.
|
|
9
|
+
— 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"
|
|
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"
|
|
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#!"
|
|
20
|
+
framesUrl = "../frames.html#!MDArray/IteratorFastBoolean.html";
|
|
21
21
|
</script>
|
|
22
22
|
|
|
23
23
|
|
|
@@ -103,8 +103,8 @@
|
|
|
103
103
|
|
|
104
104
|
<h2>Overview</h2><div class="docstring">
|
|
105
105
|
<div class="discussion">
|
|
106
|
-
<hr
|
|
107
|
-
<hr
|
|
106
|
+
<hr>
|
|
107
|
+
<hr>
|
|
108
108
|
|
|
109
109
|
|
|
110
110
|
</div>
|
|
@@ -233,7 +233,7 @@
|
|
|
233
233
|
|
|
234
234
|
|
|
235
235
|
<h3 class="inherited">Methods inherited from <span class='object_link'><a href="IteratorFast.html" title="MDArray::IteratorFast (class)">IteratorFast</a></span></h3>
|
|
236
|
-
<p class="inherited"><span class='object_link'><a href="IteratorFast.html#get_current_counter-instance_method" title="MDArray::IteratorFast#get_current_counter (method)">#get_current_counter</a></span>, <span class='object_link'><a href="IteratorFast.html#has_next%3F-instance_method" title="MDArray::IteratorFast#has_next? (method)">#has_next?</a></span>, <span class='object_link'><a href="IteratorFast.html#initialize-instance_method" title="MDArray::IteratorFast#initialize (method)">#initialize</a></span>, <span class='object_link'><a href="IteratorFast.html#next-instance_method" title="MDArray::IteratorFast#next (method)">#next</a></span></p>
|
|
236
|
+
<p class="inherited"><span class='object_link'><a href="IteratorFast.html#get_current_counter-instance_method" title="MDArray::IteratorFast#get_current_counter (method)">#get_current_counter</a></span>, <span class='object_link'><a href="IteratorFast.html#has_next%3F-instance_method" title="MDArray::IteratorFast#has_next? (method)">#has_next?</a></span>, <span class='object_link'><a href="IteratorFast.html#initialize-instance_method" title="MDArray::IteratorFast#initialize (method)">#initialize</a></span>, <span class='object_link'><a href="IteratorFast.html#jget_current_counter-instance_method" title="MDArray::IteratorFast#jget_current_counter (method)">#jget_current_counter</a></span>, <span class='object_link'><a href="IteratorFast.html#next-instance_method" title="MDArray::IteratorFast#next (method)">#next</a></span></p>
|
|
237
237
|
<div id="constructor_details" class="method_details_list">
|
|
238
238
|
<h2>Constructor Details</h2>
|
|
239
239
|
|
|
@@ -261,17 +261,16 @@
|
|
|
261
261
|
<pre class="lines">
|
|
262
262
|
|
|
263
263
|
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
264
|
+
686
|
|
265
|
+
687
|
|
266
|
+
688</pre>
|
|
267
267
|
</td>
|
|
268
268
|
<td>
|
|
269
|
-
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line
|
|
269
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line 686</span>
|
|
270
270
|
|
|
271
|
-
<span class='
|
|
272
|
-
<span class='
|
|
273
|
-
<span class='
|
|
274
|
-
</pre>
|
|
271
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_get_current'>get_current</span>
|
|
272
|
+
<span class='ivar'>@iterator</span><span class='period'>.</span><span class='id identifier rubyid_getBoolenaCurrent'>getBoolenaCurrent</span>
|
|
273
|
+
<span class='kw'>end</span></pre>
|
|
275
274
|
</td>
|
|
276
275
|
</tr>
|
|
277
276
|
</table>
|
|
@@ -292,17 +291,16 @@
|
|
|
292
291
|
<pre class="lines">
|
|
293
292
|
|
|
294
293
|
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
294
|
+
690
|
|
295
|
+
691
|
|
296
|
+
692</pre>
|
|
298
297
|
</td>
|
|
299
298
|
<td>
|
|
300
|
-
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line
|
|
299
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line 690</span>
|
|
301
300
|
|
|
302
|
-
<span class='
|
|
303
|
-
<span class='
|
|
304
|
-
<span class='
|
|
305
|
-
</pre>
|
|
301
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_get_next'>get_next</span>
|
|
302
|
+
<span class='ivar'>@iterator</span><span class='period'>.</span><span class='id identifier rubyid_getBooleanNext'>getBooleanNext</span>
|
|
303
|
+
<span class='kw'>end</span></pre>
|
|
306
304
|
</td>
|
|
307
305
|
</tr>
|
|
308
306
|
</table>
|
|
@@ -323,17 +321,16 @@
|
|
|
323
321
|
<pre class="lines">
|
|
324
322
|
|
|
325
323
|
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
324
|
+
694
|
|
325
|
+
695
|
|
326
|
+
696</pre>
|
|
329
327
|
</td>
|
|
330
328
|
<td>
|
|
331
|
-
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line
|
|
329
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line 694</span>
|
|
332
330
|
|
|
333
|
-
<span class='
|
|
334
|
-
<span class='
|
|
335
|
-
<span class='
|
|
336
|
-
</pre>
|
|
331
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_set_current'>set_current</span><span class='lparen'>(</span><span class='id identifier rubyid_value'>value</span><span class='rparen'>)</span>
|
|
332
|
+
<span class='ivar'>@iterator</span><span class='period'>.</span><span class='id identifier rubyid_setBooleanCurrent'>setBooleanCurrent</span><span class='lparen'>(</span><span class='id identifier rubyid_value'>value</span><span class='rparen'>)</span>
|
|
333
|
+
<span class='kw'>end</span></pre>
|
|
337
334
|
</td>
|
|
338
335
|
</tr>
|
|
339
336
|
</table>
|
|
@@ -354,17 +351,16 @@
|
|
|
354
351
|
<pre class="lines">
|
|
355
352
|
|
|
356
353
|
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
354
|
+
698
|
|
355
|
+
699
|
|
356
|
+
700</pre>
|
|
360
357
|
</td>
|
|
361
358
|
<td>
|
|
362
|
-
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line
|
|
359
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line 698</span>
|
|
363
360
|
|
|
364
|
-
<span class='
|
|
365
|
-
<span class='
|
|
366
|
-
<span class='
|
|
367
|
-
</pre>
|
|
361
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_set_next'>set_next</span><span class='lparen'>(</span><span class='id identifier rubyid_value'>value</span><span class='rparen'>)</span>
|
|
362
|
+
<span class='ivar'>@iterator</span><span class='period'>.</span><span class='id identifier rubyid_setBooleanNext'>setBooleanNext</span><span class='lparen'>(</span><span class='id identifier rubyid_value'>value</span><span class='rparen'>)</span>
|
|
363
|
+
<span class='kw'>end</span></pre>
|
|
368
364
|
</td>
|
|
369
365
|
</tr>
|
|
370
366
|
</table>
|
|
@@ -375,9 +371,9 @@
|
|
|
375
371
|
</div>
|
|
376
372
|
|
|
377
373
|
<div id="footer">
|
|
378
|
-
Generated on
|
|
374
|
+
Generated on Tue Jul 14 18:08:59 2015 by
|
|
379
375
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
380
|
-
0.8.
|
|
376
|
+
0.8.7.6 (ruby-1.9.3).
|
|
381
377
|
</div>
|
|
382
378
|
|
|
383
379
|
</body>
|
|
@@ -6,18 +6,18 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: MDArray::IteratorFastByte
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.8.
|
|
9
|
+
— 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"
|
|
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"
|
|
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#!"
|
|
20
|
+
framesUrl = "../frames.html#!MDArray/IteratorFastByte.html";
|
|
21
21
|
</script>
|
|
22
22
|
|
|
23
23
|
|
|
@@ -101,8 +101,19 @@
|
|
|
101
101
|
</dl>
|
|
102
102
|
<div class="clear"></div>
|
|
103
103
|
|
|
104
|
+
<h2>Overview</h2><div class="docstring">
|
|
105
|
+
<div class="discussion">
|
|
106
|
+
<hr>
|
|
107
|
+
<hr>
|
|
104
108
|
|
|
105
109
|
|
|
110
|
+
</div>
|
|
111
|
+
</div>
|
|
112
|
+
<div class="tags">
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
</div>
|
|
116
|
+
|
|
106
117
|
|
|
107
118
|
|
|
108
119
|
|
|
@@ -222,7 +233,7 @@
|
|
|
222
233
|
|
|
223
234
|
|
|
224
235
|
<h3 class="inherited">Methods inherited from <span class='object_link'><a href="IteratorFast.html" title="MDArray::IteratorFast (class)">IteratorFast</a></span></h3>
|
|
225
|
-
<p class="inherited"><span class='object_link'><a href="IteratorFast.html#get_current_counter-instance_method" title="MDArray::IteratorFast#get_current_counter (method)">#get_current_counter</a></span>, <span class='object_link'><a href="IteratorFast.html#has_next%3F-instance_method" title="MDArray::IteratorFast#has_next? (method)">#has_next?</a></span>, <span class='object_link'><a href="IteratorFast.html#initialize-instance_method" title="MDArray::IteratorFast#initialize (method)">#initialize</a></span>, <span class='object_link'><a href="IteratorFast.html#next-instance_method" title="MDArray::IteratorFast#next (method)">#next</a></span></p>
|
|
236
|
+
<p class="inherited"><span class='object_link'><a href="IteratorFast.html#get_current_counter-instance_method" title="MDArray::IteratorFast#get_current_counter (method)">#get_current_counter</a></span>, <span class='object_link'><a href="IteratorFast.html#has_next%3F-instance_method" title="MDArray::IteratorFast#has_next? (method)">#has_next?</a></span>, <span class='object_link'><a href="IteratorFast.html#initialize-instance_method" title="MDArray::IteratorFast#initialize (method)">#initialize</a></span>, <span class='object_link'><a href="IteratorFast.html#jget_current_counter-instance_method" title="MDArray::IteratorFast#jget_current_counter (method)">#jget_current_counter</a></span>, <span class='object_link'><a href="IteratorFast.html#next-instance_method" title="MDArray::IteratorFast#next (method)">#next</a></span></p>
|
|
226
237
|
<div id="constructor_details" class="method_details_list">
|
|
227
238
|
<h2>Constructor Details</h2>
|
|
228
239
|
|
|
@@ -250,17 +261,16 @@
|
|
|
250
261
|
<pre class="lines">
|
|
251
262
|
|
|
252
263
|
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
264
|
+
710
|
|
265
|
+
711
|
|
266
|
+
712</pre>
|
|
256
267
|
</td>
|
|
257
268
|
<td>
|
|
258
|
-
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line
|
|
269
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line 710</span>
|
|
259
270
|
|
|
260
|
-
<span class='
|
|
261
|
-
<span class='
|
|
262
|
-
<span class='
|
|
263
|
-
</pre>
|
|
271
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_get_current'>get_current</span>
|
|
272
|
+
<span class='ivar'>@iterator</span><span class='period'>.</span><span class='id identifier rubyid_getByteCurrent'>getByteCurrent</span>
|
|
273
|
+
<span class='kw'>end</span></pre>
|
|
264
274
|
</td>
|
|
265
275
|
</tr>
|
|
266
276
|
</table>
|
|
@@ -281,17 +291,16 @@
|
|
|
281
291
|
<pre class="lines">
|
|
282
292
|
|
|
283
293
|
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
294
|
+
714
|
|
295
|
+
715
|
|
296
|
+
716</pre>
|
|
287
297
|
</td>
|
|
288
298
|
<td>
|
|
289
|
-
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line
|
|
299
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line 714</span>
|
|
290
300
|
|
|
291
|
-
<span class='
|
|
292
|
-
<span class='
|
|
293
|
-
<span class='
|
|
294
|
-
</pre>
|
|
301
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_get_next'>get_next</span>
|
|
302
|
+
<span class='ivar'>@iterator</span><span class='period'>.</span><span class='id identifier rubyid_getByteNext'>getByteNext</span>
|
|
303
|
+
<span class='kw'>end</span></pre>
|
|
295
304
|
</td>
|
|
296
305
|
</tr>
|
|
297
306
|
</table>
|
|
@@ -312,17 +321,16 @@
|
|
|
312
321
|
<pre class="lines">
|
|
313
322
|
|
|
314
323
|
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
324
|
+
718
|
|
325
|
+
719
|
|
326
|
+
720</pre>
|
|
318
327
|
</td>
|
|
319
328
|
<td>
|
|
320
|
-
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line
|
|
329
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line 718</span>
|
|
321
330
|
|
|
322
|
-
<span class='
|
|
323
|
-
<span class='
|
|
324
|
-
<span class='
|
|
325
|
-
</pre>
|
|
331
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_set_current'>set_current</span><span class='lparen'>(</span><span class='id identifier rubyid_value'>value</span><span class='rparen'>)</span>
|
|
332
|
+
<span class='ivar'>@iterator</span><span class='period'>.</span><span class='id identifier rubyid_setByteCurrent'>setByteCurrent</span><span class='lparen'>(</span><span class='id identifier rubyid_value'>value</span><span class='rparen'>)</span>
|
|
333
|
+
<span class='kw'>end</span></pre>
|
|
326
334
|
</td>
|
|
327
335
|
</tr>
|
|
328
336
|
</table>
|
|
@@ -343,17 +351,16 @@
|
|
|
343
351
|
<pre class="lines">
|
|
344
352
|
|
|
345
353
|
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
354
|
+
722
|
|
355
|
+
723
|
|
356
|
+
724</pre>
|
|
349
357
|
</td>
|
|
350
358
|
<td>
|
|
351
|
-
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line
|
|
359
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line 722</span>
|
|
352
360
|
|
|
353
|
-
<span class='
|
|
354
|
-
<span class='
|
|
355
|
-
<span class='
|
|
356
|
-
</pre>
|
|
361
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_set_next'>set_next</span><span class='lparen'>(</span><span class='id identifier rubyid_value'>value</span><span class='rparen'>)</span>
|
|
362
|
+
<span class='ivar'>@iterator</span><span class='period'>.</span><span class='id identifier rubyid_setByteNext'>setByteNext</span><span class='lparen'>(</span><span class='id identifier rubyid_value'>value</span><span class='rparen'>)</span>
|
|
363
|
+
<span class='kw'>end</span></pre>
|
|
357
364
|
</td>
|
|
358
365
|
</tr>
|
|
359
366
|
</table>
|
|
@@ -364,9 +371,9 @@
|
|
|
364
371
|
</div>
|
|
365
372
|
|
|
366
373
|
<div id="footer">
|
|
367
|
-
Generated on
|
|
374
|
+
Generated on Tue Jul 14 18:08:59 2015 by
|
|
368
375
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
369
|
-
0.8.
|
|
376
|
+
0.8.7.6 (ruby-1.9.3).
|
|
370
377
|
</div>
|
|
371
378
|
|
|
372
379
|
</body>
|
|
@@ -6,18 +6,18 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: MDArray::IteratorFastChar
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.8.
|
|
9
|
+
— 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"
|
|
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"
|
|
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#!"
|
|
20
|
+
framesUrl = "../frames.html#!MDArray/IteratorFastChar.html";
|
|
21
21
|
</script>
|
|
22
22
|
|
|
23
23
|
|
|
@@ -103,8 +103,8 @@
|
|
|
103
103
|
|
|
104
104
|
<h2>Overview</h2><div class="docstring">
|
|
105
105
|
<div class="discussion">
|
|
106
|
-
<hr
|
|
107
|
-
<hr
|
|
106
|
+
<hr>
|
|
107
|
+
<hr>
|
|
108
108
|
|
|
109
109
|
|
|
110
110
|
</div>
|
|
@@ -233,7 +233,7 @@
|
|
|
233
233
|
|
|
234
234
|
|
|
235
235
|
<h3 class="inherited">Methods inherited from <span class='object_link'><a href="IteratorFast.html" title="MDArray::IteratorFast (class)">IteratorFast</a></span></h3>
|
|
236
|
-
<p class="inherited"><span class='object_link'><a href="IteratorFast.html#get_current_counter-instance_method" title="MDArray::IteratorFast#get_current_counter (method)">#get_current_counter</a></span>, <span class='object_link'><a href="IteratorFast.html#has_next%3F-instance_method" title="MDArray::IteratorFast#has_next? (method)">#has_next?</a></span>, <span class='object_link'><a href="IteratorFast.html#initialize-instance_method" title="MDArray::IteratorFast#initialize (method)">#initialize</a></span>, <span class='object_link'><a href="IteratorFast.html#next-instance_method" title="MDArray::IteratorFast#next (method)">#next</a></span></p>
|
|
236
|
+
<p class="inherited"><span class='object_link'><a href="IteratorFast.html#get_current_counter-instance_method" title="MDArray::IteratorFast#get_current_counter (method)">#get_current_counter</a></span>, <span class='object_link'><a href="IteratorFast.html#has_next%3F-instance_method" title="MDArray::IteratorFast#has_next? (method)">#has_next?</a></span>, <span class='object_link'><a href="IteratorFast.html#initialize-instance_method" title="MDArray::IteratorFast#initialize (method)">#initialize</a></span>, <span class='object_link'><a href="IteratorFast.html#jget_current_counter-instance_method" title="MDArray::IteratorFast#jget_current_counter (method)">#jget_current_counter</a></span>, <span class='object_link'><a href="IteratorFast.html#next-instance_method" title="MDArray::IteratorFast#next (method)">#next</a></span></p>
|
|
237
237
|
<div id="constructor_details" class="method_details_list">
|
|
238
238
|
<h2>Constructor Details</h2>
|
|
239
239
|
|
|
@@ -261,17 +261,16 @@
|
|
|
261
261
|
<pre class="lines">
|
|
262
262
|
|
|
263
263
|
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
264
|
+
734
|
|
265
|
+
735
|
|
266
|
+
736</pre>
|
|
267
267
|
</td>
|
|
268
268
|
<td>
|
|
269
|
-
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line
|
|
269
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line 734</span>
|
|
270
270
|
|
|
271
|
-
<span class='
|
|
272
|
-
<span class='
|
|
273
|
-
<span class='
|
|
274
|
-
</pre>
|
|
271
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_get_current'>get_current</span>
|
|
272
|
+
<span class='ivar'>@iterator</span><span class='period'>.</span><span class='id identifier rubyid_getCharCurrent'>getCharCurrent</span>
|
|
273
|
+
<span class='kw'>end</span></pre>
|
|
275
274
|
</td>
|
|
276
275
|
</tr>
|
|
277
276
|
</table>
|
|
@@ -292,17 +291,16 @@
|
|
|
292
291
|
<pre class="lines">
|
|
293
292
|
|
|
294
293
|
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
294
|
+
738
|
|
295
|
+
739
|
|
296
|
+
740</pre>
|
|
298
297
|
</td>
|
|
299
298
|
<td>
|
|
300
|
-
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line
|
|
299
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line 738</span>
|
|
301
300
|
|
|
302
|
-
<span class='
|
|
303
|
-
<span class='
|
|
304
|
-
<span class='
|
|
305
|
-
</pre>
|
|
301
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_get_next'>get_next</span>
|
|
302
|
+
<span class='ivar'>@iterator</span><span class='period'>.</span><span class='id identifier rubyid_getCharNext'>getCharNext</span>
|
|
303
|
+
<span class='kw'>end</span></pre>
|
|
306
304
|
</td>
|
|
307
305
|
</tr>
|
|
308
306
|
</table>
|
|
@@ -323,17 +321,16 @@
|
|
|
323
321
|
<pre class="lines">
|
|
324
322
|
|
|
325
323
|
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
324
|
+
742
|
|
325
|
+
743
|
|
326
|
+
744</pre>
|
|
329
327
|
</td>
|
|
330
328
|
<td>
|
|
331
|
-
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line
|
|
329
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line 742</span>
|
|
332
330
|
|
|
333
|
-
<span class='
|
|
334
|
-
<span class='
|
|
335
|
-
<span class='
|
|
336
|
-
</pre>
|
|
331
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_set_current'>set_current</span><span class='lparen'>(</span><span class='id identifier rubyid_value'>value</span><span class='rparen'>)</span>
|
|
332
|
+
<span class='ivar'>@iterator</span><span class='period'>.</span><span class='id identifier rubyid_setCharCurrent'>setCharCurrent</span><span class='lparen'>(</span><span class='id identifier rubyid_value'>value</span><span class='rparen'>)</span>
|
|
333
|
+
<span class='kw'>end</span></pre>
|
|
337
334
|
</td>
|
|
338
335
|
</tr>
|
|
339
336
|
</table>
|
|
@@ -354,17 +351,16 @@
|
|
|
354
351
|
<pre class="lines">
|
|
355
352
|
|
|
356
353
|
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
354
|
+
746
|
|
355
|
+
747
|
|
356
|
+
748</pre>
|
|
360
357
|
</td>
|
|
361
358
|
<td>
|
|
362
|
-
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line
|
|
359
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/counter.rb', line 746</span>
|
|
363
360
|
|
|
364
|
-
<span class='
|
|
365
|
-
<span class='
|
|
366
|
-
<span class='
|
|
367
|
-
</pre>
|
|
361
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_set_next'>set_next</span><span class='lparen'>(</span><span class='id identifier rubyid_value'>value</span><span class='rparen'>)</span>
|
|
362
|
+
<span class='ivar'>@iterator</span><span class='period'>.</span><span class='id identifier rubyid_setCharNext'>setCharNext</span><span class='lparen'>(</span><span class='id identifier rubyid_value'>value</span><span class='rparen'>)</span>
|
|
363
|
+
<span class='kw'>end</span></pre>
|
|
368
364
|
</td>
|
|
369
365
|
</tr>
|
|
370
366
|
</table>
|
|
@@ -375,9 +371,9 @@
|
|
|
375
371
|
</div>
|
|
376
372
|
|
|
377
373
|
<div id="footer">
|
|
378
|
-
Generated on
|
|
374
|
+
Generated on Tue Jul 14 18:08:59 2015 by
|
|
379
375
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
380
|
-
0.8.
|
|
376
|
+
0.8.7.6 (ruby-1.9.3).
|
|
381
377
|
</div>
|
|
382
378
|
|
|
383
379
|
</body>
|