carray 3.0.0 → 3.0.1

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 (180) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +2 -1
  3. data/CHANGELOG.md +325 -3
  4. data/{NEWS.md → CHANGELOG.v1.md} +1 -1
  5. data/README.md +32 -32
  6. data/carray.gemspec +12 -8
  7. data/ext/ca_axis_group.c +55 -19
  8. data/ext/ca_binop_dispatch.c +5 -6
  9. data/ext/ca_binop_dispatch.h +0 -7
  10. data/ext/ca_categorical_iterator.c +13 -13
  11. data/ext/ca_for_each_element.h +6 -8
  12. data/ext/ca_group_iter.c +1 -1
  13. data/ext/ca_kernel_iterator.c +69 -23
  14. data/ext/ca_kernel_iterator.h +3 -10
  15. data/ext/ca_obj_bincmp.c +57 -27
  16. data/ext/ca_obj_binop.c +86 -30
  17. data/ext/ca_obj_const_string.c +3 -1
  18. data/ext/ca_obj_face.c +80 -0
  19. data/ext/ca_obj_face.h +33 -1
  20. data/ext/ca_obj_fake.c +11 -0
  21. data/ext/ca_obj_fixlen_string.c +3 -1
  22. data/ext/ca_obj_grid.c +11 -3
  23. data/ext/ca_obj_meld.c +13 -8
  24. data/ext/ca_obj_moncmp.c +33 -14
  25. data/ext/ca_obj_monop.c +19 -7
  26. data/ext/ca_obj_object.c +99 -4
  27. data/ext/ca_obj_record.c +3 -1
  28. data/ext/ca_obj_refer.c +30 -6
  29. data/ext/ca_obj_roll.c +13 -5
  30. data/ext/ca_obj_select_axis.c +16 -6
  31. data/ext/ca_obj_shift.c +3 -3
  32. data/ext/ca_obj_stride.c +106 -23
  33. data/ext/ca_obj_string.c +3 -1
  34. data/ext/ca_obj_tile.c +13 -5
  35. data/ext/ca_obj_time.c +3 -1
  36. data/ext/ca_obj_timedelta.c +3 -1
  37. data/ext/ca_obj_transpose.c +1 -1
  38. data/ext/ca_obj_triop.c +62 -23
  39. data/ext/ca_obj_window.c +86 -17
  40. data/ext/ca_op_cmplx64.h +123 -0
  41. data/ext/ca_op_ipower.c +0 -3
  42. data/ext/ca_sort_kernels.h +5 -5
  43. data/ext/ca_sweep_engine.c +78 -35
  44. data/ext/ca_sweep_engine.h +13 -4
  45. data/ext/ca_transform_common.c +7 -0
  46. data/ext/carray.h +127 -130
  47. data/ext/carray_access.c +56 -34
  48. data/ext/carray_bincount.c +8 -8
  49. data/ext/carray_broadcast.c +99 -6
  50. data/ext/carray_build_flags.h +3 -0
  51. data/ext/carray_call_cfunc.c +1491 -0
  52. data/ext/carray_call_cfunc.h +153 -0
  53. data/ext/carray_cast.c +69 -31
  54. data/ext/carray_conversion.c +22 -22
  55. data/ext/carray_copy.c +12 -2
  56. data/ext/carray_core.c +57 -10
  57. data/ext/carray_count.c +1 -1
  58. data/ext/carray_element.c +7 -7
  59. data/ext/carray_factorize.c +28 -28
  60. data/ext/carray_hold.c +1 -1
  61. data/ext/carray_index_classifier.c +7 -21
  62. data/ext/carray_internal.h +19 -3
  63. data/ext/carray_kernels_bincmp.c +1 -0
  64. data/ext/carray_kernels_binop.c +320 -298
  65. data/ext/carray_kernels_init.c +1095 -0
  66. data/ext/carray_kernels_map.c +1 -0
  67. data/ext/carray_kernels_moncmp.c +1 -0
  68. data/ext/carray_kernels_monop.c +412 -411
  69. data/ext/carray_kernels_reduce_aggregate.c +88 -87
  70. data/ext/carray_kernels_reduce_boolean.c +1 -0
  71. data/ext/carray_kernels_reduce_cumulative.c +54 -53
  72. data/ext/carray_kernels_reduce_extreme.c +51 -50
  73. data/ext/carray_kernels_reduce_variance.c +1 -0
  74. data/ext/carray_kernels_scan.c +1 -0
  75. data/ext/carray_kernels_search.c +93 -92
  76. data/ext/carray_kernels_sort.c +1 -0
  77. data/ext/carray_kernels_triop.c +1 -0
  78. data/ext/carray_lazy.c +175 -5
  79. data/ext/carray_mask.c +6 -5
  80. data/ext/carray_median_percentile.c +1 -1
  81. data/ext/carray_memory_view.c +46 -21
  82. data/ext/carray_operator.c +46 -49
  83. data/ext/carray_partition.c +4 -4
  84. data/ext/carray_random.c +7 -7
  85. data/ext/carray_scatter.c +1 -1
  86. data/ext/carray_sort.c +3 -3
  87. data/ext/carray_sort_kernel.c +10 -10
  88. data/ext/carray_test.c +1 -1
  89. data/ext/extconf.rb +18 -0
  90. data/ext/mk_call_cfunc.rb +243 -52
  91. data/ext/mkkernel.rb +354 -100
  92. data/ext/ruby_carray.c +18 -16
  93. data/ext/version.h +4 -4
  94. data/lib/carray/autoload_carray.rb +19 -0
  95. data/lib/carray/autoload_method_extension.rb +2 -1
  96. data/lib/carray/axis_group.rb +7 -7
  97. data/lib/carray/basics.rb +59 -59
  98. data/lib/carray/bincount_nd.rb +12 -12
  99. data/lib/carray/block_iterator.rb +24 -14
  100. data/lib/carray/categorical.rb +4 -4
  101. data/lib/carray/categorical_iterator.rb +98 -76
  102. data/lib/carray/conditional.rb +14 -14
  103. data/lib/carray/construct.rb +21 -0
  104. data/lib/carray/core_extensions.rb +62 -5
  105. data/lib/carray/data_type_extension.rb +18 -1
  106. data/lib/carray/frame/concat.rb +3 -3
  107. data/lib/carray/frame/convert.rb +1 -1
  108. data/lib/carray/frame/frame.rb +4 -11
  109. data/lib/carray/frame/io.rb +159 -2
  110. data/lib/carray/frame/sort.rb +1 -1
  111. data/lib/carray/frame/verbs.rb +18 -1
  112. data/lib/carray/fuse_source.rb +123 -0
  113. data/lib/carray/fusion.rb +218 -0
  114. data/lib/carray/histogram.rb +16 -16
  115. data/lib/carray/inspect.rb +1 -7
  116. data/lib/carray/iterator.rb +4 -3
  117. data/lib/carray/lazy.rb +125 -73
  118. data/lib/carray/meld_reduce.rb +2 -2
  119. data/lib/carray/methods/align_addr.rb +1 -1
  120. data/lib/carray/methods/composition.rb +1 -1
  121. data/lib/carray/methods/is_in.rb +12 -12
  122. data/lib/carray/methods/locate_addr.rb +6 -1
  123. data/lib/carray/methods/mask_duplicates.rb +1 -1
  124. data/lib/carray/methods/meshgrid.rb +4 -5
  125. data/lib/carray/methods/mode.rb +2 -2
  126. data/lib/carray/methods/nunique.rb +1 -1
  127. data/lib/carray/methods/snap.rb +7 -2
  128. data/lib/carray/methods/unique.rb +3 -3
  129. data/lib/carray/methods/value_counts.rb +2 -2
  130. data/lib/carray/runtime.rb +0 -19
  131. data/lib/carray/slab_iterator.rb +20 -7
  132. data/lib/carray/string_operation_extension.rb +5 -5
  133. data/lib/carray/time.rb +890 -491
  134. data/lib/carray/window_iterator.rb +285 -13
  135. data/lib/carray.rb +5 -5
  136. data/yard-stubs/ca_obj_array.rb +385 -0
  137. data/yard-stubs/ca_obj_bitarray.rb +38 -0
  138. data/yard-stubs/ca_obj_bitfield.rb +43 -0
  139. data/yard-stubs/ca_obj_block.rb +73 -0
  140. data/yard-stubs/ca_obj_byte_swap.rb +56 -0
  141. data/yard-stubs/ca_obj_fake.rb +31 -0
  142. data/yard-stubs/ca_obj_farray.rb +32 -0
  143. data/yard-stubs/ca_obj_field.rb +45 -0
  144. data/yard-stubs/ca_obj_grid.rb +35 -0
  145. data/yard-stubs/ca_obj_refer.rb +72 -0
  146. data/yard-stubs/ca_obj_roll.rb +45 -0
  147. data/yard-stubs/ca_obj_shift.rb +43 -0
  148. data/yard-stubs/ca_obj_stride.rb +181 -0
  149. data/yard-stubs/ca_obj_tile.rb +29 -0
  150. data/yard-stubs/ca_obj_transpose.rb +40 -0
  151. data/yard-stubs/ca_obj_window.rb +49 -0
  152. data/yard-stubs/carray_access.rb +131 -0
  153. data/yard-stubs/carray_attribute.rb +246 -0
  154. data/yard-stubs/carray_broadcast.rb +37 -0
  155. data/yard-stubs/carray_cast.rb +489 -0
  156. data/yard-stubs/carray_class.rb +65 -0
  157. data/yard-stubs/carray_conversion.rb +76 -0
  158. data/yard-stubs/carray_copy.rb +79 -0
  159. data/yard-stubs/carray_core.rb +114 -0
  160. data/yard-stubs/carray_count.rb +79 -0
  161. data/yard-stubs/carray_element.rb +108 -0
  162. data/yard-stubs/carray_generate.rb +66 -0
  163. data/yard-stubs/carray_lazy.rb +23 -0
  164. data/yard-stubs/carray_loop.rb +140 -0
  165. data/yard-stubs/carray_mask.rb +259 -0
  166. data/yard-stubs/carray_math.rb +132 -0
  167. data/yard-stubs/carray_mathfunc.rb +45 -0
  168. data/yard-stubs/carray_median_percentile.rb +89 -0
  169. data/yard-stubs/carray_memory_view.rb +163 -0
  170. data/yard-stubs/carray_order.rb +312 -0
  171. data/yard-stubs/carray_random.rb +89 -0
  172. data/yard-stubs/carray_scatter.rb +106 -0
  173. data/yard-stubs/carray_slab.rb +57 -0
  174. data/yard-stubs/carray_sort.rb +163 -0
  175. data/yard-stubs/carray_test.rb +85 -0
  176. data/yard-stubs/carray_undef.rb +64 -0
  177. data/yard-stubs/carray_utils.rb +97 -0
  178. data/yard-stubs/ruby_carray.rb +193 -0
  179. metadata +59 -10
  180. data/ext/ca_obj_unbound_repeat.c +0 -496
@@ -34,6 +34,7 @@ static inline VALUE BOOL2VAL (boolean8_t x) { return x ? Qtrue : Qfalse; }
34
34
  #endif
35
35
 
36
36
  #include "ca_op_powi.h"
37
+ #include "ca_op_cmplx64.h"
37
38
 
38
39
  /* ===== find_value_index_ki ============================================ */
39
40
 
@@ -42,7 +43,7 @@ find_value_index_ki_native_i8 (VALUE self, CArray *ca, VALUE rval, int axis)
42
43
  {
43
44
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
44
45
  all dim==1 etc. to a Ruby Float and route it through the Case A
45
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
46
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
46
47
  downstream). */
47
48
  if ( rb_obj_is_carray(rval) ) {
48
49
  CArray *cv_pre_;
@@ -362,7 +363,7 @@ find_value_index_ki_native_u8 (VALUE self, CArray *ca, VALUE rval, int axis)
362
363
  {
363
364
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
364
365
  all dim==1 etc. to a Ruby Float and route it through the Case A
365
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
366
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
366
367
  downstream). */
367
368
  if ( rb_obj_is_carray(rval) ) {
368
369
  CArray *cv_pre_;
@@ -682,7 +683,7 @@ find_value_index_ki_native_i16 (VALUE self, CArray *ca, VALUE rval, int axis)
682
683
  {
683
684
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
684
685
  all dim==1 etc. to a Ruby Float and route it through the Case A
685
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
686
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
686
687
  downstream). */
687
688
  if ( rb_obj_is_carray(rval) ) {
688
689
  CArray *cv_pre_;
@@ -1002,7 +1003,7 @@ find_value_index_ki_native_u16 (VALUE self, CArray *ca, VALUE rval, int axis)
1002
1003
  {
1003
1004
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
1004
1005
  all dim==1 etc. to a Ruby Float and route it through the Case A
1005
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
1006
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
1006
1007
  downstream). */
1007
1008
  if ( rb_obj_is_carray(rval) ) {
1008
1009
  CArray *cv_pre_;
@@ -1322,7 +1323,7 @@ find_value_index_ki_native_i32 (VALUE self, CArray *ca, VALUE rval, int axis)
1322
1323
  {
1323
1324
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
1324
1325
  all dim==1 etc. to a Ruby Float and route it through the Case A
1325
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
1326
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
1326
1327
  downstream). */
1327
1328
  if ( rb_obj_is_carray(rval) ) {
1328
1329
  CArray *cv_pre_;
@@ -1642,7 +1643,7 @@ find_value_index_ki_native_u32 (VALUE self, CArray *ca, VALUE rval, int axis)
1642
1643
  {
1643
1644
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
1644
1645
  all dim==1 etc. to a Ruby Float and route it through the Case A
1645
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
1646
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
1646
1647
  downstream). */
1647
1648
  if ( rb_obj_is_carray(rval) ) {
1648
1649
  CArray *cv_pre_;
@@ -1962,7 +1963,7 @@ find_value_index_ki_native_i64 (VALUE self, CArray *ca, VALUE rval, int axis)
1962
1963
  {
1963
1964
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
1964
1965
  all dim==1 etc. to a Ruby Float and route it through the Case A
1965
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
1966
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
1966
1967
  downstream). */
1967
1968
  if ( rb_obj_is_carray(rval) ) {
1968
1969
  CArray *cv_pre_;
@@ -2282,7 +2283,7 @@ find_value_index_ki_native_u64 (VALUE self, CArray *ca, VALUE rval, int axis)
2282
2283
  {
2283
2284
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
2284
2285
  all dim==1 etc. to a Ruby Float and route it through the Case A
2285
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
2286
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
2286
2287
  downstream). */
2287
2288
  if ( rb_obj_is_carray(rval) ) {
2288
2289
  CArray *cv_pre_;
@@ -2602,7 +2603,7 @@ find_value_index_ki_native_f32 (VALUE self, CArray *ca, VALUE rval, int axis)
2602
2603
  {
2603
2604
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
2604
2605
  all dim==1 etc. to a Ruby Float and route it through the Case A
2605
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
2606
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
2606
2607
  downstream). */
2607
2608
  if ( rb_obj_is_carray(rval) ) {
2608
2609
  CArray *cv_pre_;
@@ -2922,7 +2923,7 @@ find_value_index_ki_native_f64 (VALUE self, CArray *ca, VALUE rval, int axis)
2922
2923
  {
2923
2924
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
2924
2925
  all dim==1 etc. to a Ruby Float and route it through the Case A
2925
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
2926
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
2926
2927
  downstream). */
2927
2928
  if ( rb_obj_is_carray(rval) ) {
2928
2929
  CArray *cv_pre_;
@@ -3242,7 +3243,7 @@ find_value_index_ki_native_bool (VALUE self, CArray *ca, VALUE rval, int axis)
3242
3243
  {
3243
3244
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
3244
3245
  all dim==1 etc. to a Ruby Float and route it through the Case A
3245
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
3246
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
3246
3247
  downstream). */
3247
3248
  if ( rb_obj_is_carray(rval) ) {
3248
3249
  CArray *cv_pre_;
@@ -3562,7 +3563,7 @@ find_value_index_ki_native_object (VALUE self, CArray *ca, VALUE rval, int axis)
3562
3563
  {
3563
3564
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
3564
3565
  all dim==1 etc. to a Ruby Float and route it through the Case A
3565
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
3566
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
3566
3567
  downstream). */
3567
3568
  if ( rb_obj_is_carray(rval) ) {
3568
3569
  CArray *cv_pre_;
@@ -3882,7 +3883,7 @@ find_value_index_ki_native_fixlen (VALUE self, CArray *ca, VALUE rval, int axis)
3882
3883
  {
3883
3884
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
3884
3885
  all dim==1 etc. to a Ruby Float and route it through the Case A
3885
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
3886
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
3886
3887
  downstream). */
3887
3888
  if ( rb_obj_is_carray(rval) ) {
3888
3889
  CArray *cv_pre_;
@@ -4297,7 +4298,7 @@ bsearch_ki_native_i8 (VALUE self, CArray *ca, VALUE rval, int axis)
4297
4298
  {
4298
4299
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
4299
4300
  all dim==1 etc. to a Ruby Float and route it through the Case A
4300
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
4301
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
4301
4302
  downstream). */
4302
4303
  if ( rb_obj_is_carray(rval) ) {
4303
4304
  CArray *cv_pre_;
@@ -4633,7 +4634,7 @@ bsearch_ki_native_u8 (VALUE self, CArray *ca, VALUE rval, int axis)
4633
4634
  {
4634
4635
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
4635
4636
  all dim==1 etc. to a Ruby Float and route it through the Case A
4636
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
4637
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
4637
4638
  downstream). */
4638
4639
  if ( rb_obj_is_carray(rval) ) {
4639
4640
  CArray *cv_pre_;
@@ -4969,7 +4970,7 @@ bsearch_ki_native_i16 (VALUE self, CArray *ca, VALUE rval, int axis)
4969
4970
  {
4970
4971
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
4971
4972
  all dim==1 etc. to a Ruby Float and route it through the Case A
4972
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
4973
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
4973
4974
  downstream). */
4974
4975
  if ( rb_obj_is_carray(rval) ) {
4975
4976
  CArray *cv_pre_;
@@ -5305,7 +5306,7 @@ bsearch_ki_native_u16 (VALUE self, CArray *ca, VALUE rval, int axis)
5305
5306
  {
5306
5307
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
5307
5308
  all dim==1 etc. to a Ruby Float and route it through the Case A
5308
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
5309
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
5309
5310
  downstream). */
5310
5311
  if ( rb_obj_is_carray(rval) ) {
5311
5312
  CArray *cv_pre_;
@@ -5641,7 +5642,7 @@ bsearch_ki_native_i32 (VALUE self, CArray *ca, VALUE rval, int axis)
5641
5642
  {
5642
5643
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
5643
5644
  all dim==1 etc. to a Ruby Float and route it through the Case A
5644
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
5645
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
5645
5646
  downstream). */
5646
5647
  if ( rb_obj_is_carray(rval) ) {
5647
5648
  CArray *cv_pre_;
@@ -5977,7 +5978,7 @@ bsearch_ki_native_u32 (VALUE self, CArray *ca, VALUE rval, int axis)
5977
5978
  {
5978
5979
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
5979
5980
  all dim==1 etc. to a Ruby Float and route it through the Case A
5980
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
5981
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
5981
5982
  downstream). */
5982
5983
  if ( rb_obj_is_carray(rval) ) {
5983
5984
  CArray *cv_pre_;
@@ -6313,7 +6314,7 @@ bsearch_ki_native_i64 (VALUE self, CArray *ca, VALUE rval, int axis)
6313
6314
  {
6314
6315
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
6315
6316
  all dim==1 etc. to a Ruby Float and route it through the Case A
6316
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
6317
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
6317
6318
  downstream). */
6318
6319
  if ( rb_obj_is_carray(rval) ) {
6319
6320
  CArray *cv_pre_;
@@ -6649,7 +6650,7 @@ bsearch_ki_native_u64 (VALUE self, CArray *ca, VALUE rval, int axis)
6649
6650
  {
6650
6651
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
6651
6652
  all dim==1 etc. to a Ruby Float and route it through the Case A
6652
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
6653
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
6653
6654
  downstream). */
6654
6655
  if ( rb_obj_is_carray(rval) ) {
6655
6656
  CArray *cv_pre_;
@@ -6985,7 +6986,7 @@ bsearch_ki_native_f32 (VALUE self, CArray *ca, VALUE rval, int axis)
6985
6986
  {
6986
6987
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
6987
6988
  all dim==1 etc. to a Ruby Float and route it through the Case A
6988
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
6989
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
6989
6990
  downstream). */
6990
6991
  if ( rb_obj_is_carray(rval) ) {
6991
6992
  CArray *cv_pre_;
@@ -7321,7 +7322,7 @@ bsearch_ki_native_f64 (VALUE self, CArray *ca, VALUE rval, int axis)
7321
7322
  {
7322
7323
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
7323
7324
  all dim==1 etc. to a Ruby Float and route it through the Case A
7324
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
7325
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
7325
7326
  downstream). */
7326
7327
  if ( rb_obj_is_carray(rval) ) {
7327
7328
  CArray *cv_pre_;
@@ -7657,7 +7658,7 @@ bsearch_ki_native_bool (VALUE self, CArray *ca, VALUE rval, int axis)
7657
7658
  {
7658
7659
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
7659
7660
  all dim==1 etc. to a Ruby Float and route it through the Case A
7660
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
7661
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
7661
7662
  downstream). */
7662
7663
  if ( rb_obj_is_carray(rval) ) {
7663
7664
  CArray *cv_pre_;
@@ -7993,7 +7994,7 @@ bsearch_ki_native_object (VALUE self, CArray *ca, VALUE rval, int axis)
7993
7994
  {
7994
7995
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
7995
7996
  all dim==1 etc. to a Ruby Float and route it through the Case A
7996
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
7997
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
7997
7998
  downstream). */
7998
7999
  if ( rb_obj_is_carray(rval) ) {
7999
8000
  CArray *cv_pre_;
@@ -8343,7 +8344,7 @@ bsearch_ki_native_fixlen (VALUE self, CArray *ca, VALUE rval, int axis)
8343
8344
  {
8344
8345
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
8345
8346
  all dim==1 etc. to a Ruby Float and route it through the Case A
8346
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
8347
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
8347
8348
  downstream). */
8348
8349
  if ( rb_obj_is_carray(rval) ) {
8349
8350
  CArray *cv_pre_;
@@ -8774,7 +8775,7 @@ search_ki_native_i8 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE reps)
8774
8775
  {
8775
8776
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
8776
8777
  all dim==1 etc. to a Ruby Float and route it through the Case A
8777
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
8778
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
8778
8779
  downstream). */
8779
8780
  if ( rb_obj_is_carray(rval) ) {
8780
8781
  CArray *cv_pre_;
@@ -9099,7 +9100,7 @@ search_ki_native_u8 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE reps)
9099
9100
  {
9100
9101
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
9101
9102
  all dim==1 etc. to a Ruby Float and route it through the Case A
9102
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
9103
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
9103
9104
  downstream). */
9104
9105
  if ( rb_obj_is_carray(rval) ) {
9105
9106
  CArray *cv_pre_;
@@ -9424,7 +9425,7 @@ search_ki_native_i16 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE reps)
9424
9425
  {
9425
9426
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
9426
9427
  all dim==1 etc. to a Ruby Float and route it through the Case A
9427
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
9428
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
9428
9429
  downstream). */
9429
9430
  if ( rb_obj_is_carray(rval) ) {
9430
9431
  CArray *cv_pre_;
@@ -9749,7 +9750,7 @@ search_ki_native_u16 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE reps)
9749
9750
  {
9750
9751
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
9751
9752
  all dim==1 etc. to a Ruby Float and route it through the Case A
9752
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
9753
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
9753
9754
  downstream). */
9754
9755
  if ( rb_obj_is_carray(rval) ) {
9755
9756
  CArray *cv_pre_;
@@ -10074,7 +10075,7 @@ search_ki_native_i32 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE reps)
10074
10075
  {
10075
10076
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
10076
10077
  all dim==1 etc. to a Ruby Float and route it through the Case A
10077
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
10078
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
10078
10079
  downstream). */
10079
10080
  if ( rb_obj_is_carray(rval) ) {
10080
10081
  CArray *cv_pre_;
@@ -10399,7 +10400,7 @@ search_ki_native_u32 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE reps)
10399
10400
  {
10400
10401
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
10401
10402
  all dim==1 etc. to a Ruby Float and route it through the Case A
10402
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
10403
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
10403
10404
  downstream). */
10404
10405
  if ( rb_obj_is_carray(rval) ) {
10405
10406
  CArray *cv_pre_;
@@ -10724,7 +10725,7 @@ search_ki_native_i64 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE reps)
10724
10725
  {
10725
10726
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
10726
10727
  all dim==1 etc. to a Ruby Float and route it through the Case A
10727
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
10728
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
10728
10729
  downstream). */
10729
10730
  if ( rb_obj_is_carray(rval) ) {
10730
10731
  CArray *cv_pre_;
@@ -11049,7 +11050,7 @@ search_ki_native_u64 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE reps)
11049
11050
  {
11050
11051
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
11051
11052
  all dim==1 etc. to a Ruby Float and route it through the Case A
11052
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
11053
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
11053
11054
  downstream). */
11054
11055
  if ( rb_obj_is_carray(rval) ) {
11055
11056
  CArray *cv_pre_;
@@ -11374,7 +11375,7 @@ search_ki_native_f32 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE reps)
11374
11375
  {
11375
11376
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
11376
11377
  all dim==1 etc. to a Ruby Float and route it through the Case A
11377
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
11378
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
11378
11379
  downstream). */
11379
11380
  if ( rb_obj_is_carray(rval) ) {
11380
11381
  CArray *cv_pre_;
@@ -11697,7 +11698,7 @@ search_ki_native_f64 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE reps)
11697
11698
  {
11698
11699
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
11699
11700
  all dim==1 etc. to a Ruby Float and route it through the Case A
11700
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
11701
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
11701
11702
  downstream). */
11702
11703
  if ( rb_obj_is_carray(rval) ) {
11703
11704
  CArray *cv_pre_;
@@ -12020,7 +12021,7 @@ search_ki_native_bool (VALUE self, CArray *ca, VALUE rval, int axis, VALUE reps)
12020
12021
  {
12021
12022
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
12022
12023
  all dim==1 etc. to a Ruby Float and route it through the Case A
12023
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
12024
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
12024
12025
  downstream). */
12025
12026
  if ( rb_obj_is_carray(rval) ) {
12026
12027
  CArray *cv_pre_;
@@ -12345,7 +12346,7 @@ search_ki_native_object (VALUE self, CArray *ca, VALUE rval, int axis, VALUE rep
12345
12346
  {
12346
12347
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
12347
12348
  all dim==1 etc. to a Ruby Float and route it through the Case A
12348
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
12349
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
12349
12350
  downstream). */
12350
12351
  if ( rb_obj_is_carray(rval) ) {
12351
12352
  CArray *cv_pre_;
@@ -12672,7 +12673,7 @@ search_ki_native_fixlen (VALUE self, CArray *ca, VALUE rval, int axis, VALUE rep
12672
12673
  {
12673
12674
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
12674
12675
  all dim==1 etc. to a Ruby Float and route it through the Case A
12675
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
12676
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
12676
12677
  downstream). */
12677
12678
  if ( rb_obj_is_carray(rval) ) {
12678
12679
  CArray *cv_pre_;
@@ -13092,7 +13093,7 @@ search_nearest_ki_native_i8 (VALUE self, CArray *ca, VALUE rval, int axis)
13092
13093
  {
13093
13094
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
13094
13095
  all dim==1 etc. to a Ruby Float and route it through the Case A
13095
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
13096
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
13096
13097
  downstream). */
13097
13098
  if ( rb_obj_is_carray(rval) ) {
13098
13099
  CArray *cv_pre_;
@@ -13418,7 +13419,7 @@ search_nearest_ki_native_u8 (VALUE self, CArray *ca, VALUE rval, int axis)
13418
13419
  {
13419
13420
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
13420
13421
  all dim==1 etc. to a Ruby Float and route it through the Case A
13421
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
13422
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
13422
13423
  downstream). */
13423
13424
  if ( rb_obj_is_carray(rval) ) {
13424
13425
  CArray *cv_pre_;
@@ -13744,7 +13745,7 @@ search_nearest_ki_native_i16 (VALUE self, CArray *ca, VALUE rval, int axis)
13744
13745
  {
13745
13746
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
13746
13747
  all dim==1 etc. to a Ruby Float and route it through the Case A
13747
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
13748
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
13748
13749
  downstream). */
13749
13750
  if ( rb_obj_is_carray(rval) ) {
13750
13751
  CArray *cv_pre_;
@@ -14070,7 +14071,7 @@ search_nearest_ki_native_u16 (VALUE self, CArray *ca, VALUE rval, int axis)
14070
14071
  {
14071
14072
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
14072
14073
  all dim==1 etc. to a Ruby Float and route it through the Case A
14073
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
14074
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
14074
14075
  downstream). */
14075
14076
  if ( rb_obj_is_carray(rval) ) {
14076
14077
  CArray *cv_pre_;
@@ -14396,7 +14397,7 @@ search_nearest_ki_native_i32 (VALUE self, CArray *ca, VALUE rval, int axis)
14396
14397
  {
14397
14398
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
14398
14399
  all dim==1 etc. to a Ruby Float and route it through the Case A
14399
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
14400
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
14400
14401
  downstream). */
14401
14402
  if ( rb_obj_is_carray(rval) ) {
14402
14403
  CArray *cv_pre_;
@@ -14722,7 +14723,7 @@ search_nearest_ki_native_u32 (VALUE self, CArray *ca, VALUE rval, int axis)
14722
14723
  {
14723
14724
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
14724
14725
  all dim==1 etc. to a Ruby Float and route it through the Case A
14725
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
14726
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
14726
14727
  downstream). */
14727
14728
  if ( rb_obj_is_carray(rval) ) {
14728
14729
  CArray *cv_pre_;
@@ -15048,7 +15049,7 @@ search_nearest_ki_native_i64 (VALUE self, CArray *ca, VALUE rval, int axis)
15048
15049
  {
15049
15050
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
15050
15051
  all dim==1 etc. to a Ruby Float and route it through the Case A
15051
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
15052
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
15052
15053
  downstream). */
15053
15054
  if ( rb_obj_is_carray(rval) ) {
15054
15055
  CArray *cv_pre_;
@@ -15374,7 +15375,7 @@ search_nearest_ki_native_u64 (VALUE self, CArray *ca, VALUE rval, int axis)
15374
15375
  {
15375
15376
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
15376
15377
  all dim==1 etc. to a Ruby Float and route it through the Case A
15377
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
15378
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
15378
15379
  downstream). */
15379
15380
  if ( rb_obj_is_carray(rval) ) {
15380
15381
  CArray *cv_pre_;
@@ -15700,7 +15701,7 @@ search_nearest_ki_native_f32 (VALUE self, CArray *ca, VALUE rval, int axis)
15700
15701
  {
15701
15702
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
15702
15703
  all dim==1 etc. to a Ruby Float and route it through the Case A
15703
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
15704
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
15704
15705
  downstream). */
15705
15706
  if ( rb_obj_is_carray(rval) ) {
15706
15707
  CArray *cv_pre_;
@@ -16026,7 +16027,7 @@ search_nearest_ki_native_f64 (VALUE self, CArray *ca, VALUE rval, int axis)
16026
16027
  {
16027
16028
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
16028
16029
  all dim==1 etc. to a Ruby Float and route it through the Case A
16029
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
16030
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
16030
16031
  downstream). */
16031
16032
  if ( rb_obj_is_carray(rval) ) {
16032
16033
  CArray *cv_pre_;
@@ -16352,7 +16353,7 @@ search_nearest_ki_native_bool (VALUE self, CArray *ca, VALUE rval, int axis)
16352
16353
  {
16353
16354
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
16354
16355
  all dim==1 etc. to a Ruby Float and route it through the Case A
16355
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
16356
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
16356
16357
  downstream). */
16357
16358
  if ( rb_obj_is_carray(rval) ) {
16358
16359
  CArray *cv_pre_;
@@ -16678,7 +16679,7 @@ search_nearest_ki_native_object (VALUE self, CArray *ca, VALUE rval, int axis)
16678
16679
  {
16679
16680
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
16680
16681
  all dim==1 etc. to a Ruby Float and route it through the Case A
16681
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
16682
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
16682
16683
  downstream). */
16683
16684
  if ( rb_obj_is_carray(rval) ) {
16684
16685
  CArray *cv_pre_;
@@ -17100,7 +17101,7 @@ bsearch_addr_ki_native_i8 (VALUE self, CArray *ca, VALUE rval, int axis)
17100
17101
  {
17101
17102
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
17102
17103
  all dim==1 etc. to a Ruby Float and route it through the Case A
17103
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
17104
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
17104
17105
  downstream). */
17105
17106
  if ( rb_obj_is_carray(rval) ) {
17106
17107
  CArray *cv_pre_;
@@ -17458,7 +17459,7 @@ bsearch_addr_ki_native_u8 (VALUE self, CArray *ca, VALUE rval, int axis)
17458
17459
  {
17459
17460
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
17460
17461
  all dim==1 etc. to a Ruby Float and route it through the Case A
17461
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
17462
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
17462
17463
  downstream). */
17463
17464
  if ( rb_obj_is_carray(rval) ) {
17464
17465
  CArray *cv_pre_;
@@ -17816,7 +17817,7 @@ bsearch_addr_ki_native_i16 (VALUE self, CArray *ca, VALUE rval, int axis)
17816
17817
  {
17817
17818
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
17818
17819
  all dim==1 etc. to a Ruby Float and route it through the Case A
17819
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
17820
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
17820
17821
  downstream). */
17821
17822
  if ( rb_obj_is_carray(rval) ) {
17822
17823
  CArray *cv_pre_;
@@ -18174,7 +18175,7 @@ bsearch_addr_ki_native_u16 (VALUE self, CArray *ca, VALUE rval, int axis)
18174
18175
  {
18175
18176
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
18176
18177
  all dim==1 etc. to a Ruby Float and route it through the Case A
18177
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
18178
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
18178
18179
  downstream). */
18179
18180
  if ( rb_obj_is_carray(rval) ) {
18180
18181
  CArray *cv_pre_;
@@ -18532,7 +18533,7 @@ bsearch_addr_ki_native_i32 (VALUE self, CArray *ca, VALUE rval, int axis)
18532
18533
  {
18533
18534
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
18534
18535
  all dim==1 etc. to a Ruby Float and route it through the Case A
18535
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
18536
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
18536
18537
  downstream). */
18537
18538
  if ( rb_obj_is_carray(rval) ) {
18538
18539
  CArray *cv_pre_;
@@ -18890,7 +18891,7 @@ bsearch_addr_ki_native_u32 (VALUE self, CArray *ca, VALUE rval, int axis)
18890
18891
  {
18891
18892
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
18892
18893
  all dim==1 etc. to a Ruby Float and route it through the Case A
18893
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
18894
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
18894
18895
  downstream). */
18895
18896
  if ( rb_obj_is_carray(rval) ) {
18896
18897
  CArray *cv_pre_;
@@ -19248,7 +19249,7 @@ bsearch_addr_ki_native_i64 (VALUE self, CArray *ca, VALUE rval, int axis)
19248
19249
  {
19249
19250
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
19250
19251
  all dim==1 etc. to a Ruby Float and route it through the Case A
19251
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
19252
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
19252
19253
  downstream). */
19253
19254
  if ( rb_obj_is_carray(rval) ) {
19254
19255
  CArray *cv_pre_;
@@ -19606,7 +19607,7 @@ bsearch_addr_ki_native_u64 (VALUE self, CArray *ca, VALUE rval, int axis)
19606
19607
  {
19607
19608
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
19608
19609
  all dim==1 etc. to a Ruby Float and route it through the Case A
19609
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
19610
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
19610
19611
  downstream). */
19611
19612
  if ( rb_obj_is_carray(rval) ) {
19612
19613
  CArray *cv_pre_;
@@ -19964,7 +19965,7 @@ bsearch_addr_ki_native_f32 (VALUE self, CArray *ca, VALUE rval, int axis)
19964
19965
  {
19965
19966
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
19966
19967
  all dim==1 etc. to a Ruby Float and route it through the Case A
19967
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
19968
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
19968
19969
  downstream). */
19969
19970
  if ( rb_obj_is_carray(rval) ) {
19970
19971
  CArray *cv_pre_;
@@ -20322,7 +20323,7 @@ bsearch_addr_ki_native_f64 (VALUE self, CArray *ca, VALUE rval, int axis)
20322
20323
  {
20323
20324
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
20324
20325
  all dim==1 etc. to a Ruby Float and route it through the Case A
20325
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
20326
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
20326
20327
  downstream). */
20327
20328
  if ( rb_obj_is_carray(rval) ) {
20328
20329
  CArray *cv_pre_;
@@ -20680,7 +20681,7 @@ bsearch_addr_ki_native_bool (VALUE self, CArray *ca, VALUE rval, int axis)
20680
20681
  {
20681
20682
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
20682
20683
  all dim==1 etc. to a Ruby Float and route it through the Case A
20683
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
20684
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
20684
20685
  downstream). */
20685
20686
  if ( rb_obj_is_carray(rval) ) {
20686
20687
  CArray *cv_pre_;
@@ -21038,7 +21039,7 @@ bsearch_addr_ki_native_object (VALUE self, CArray *ca, VALUE rval, int axis)
21038
21039
  {
21039
21040
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
21040
21041
  all dim==1 etc. to a Ruby Float and route it through the Case A
21041
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
21042
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
21042
21043
  downstream). */
21043
21044
  if ( rb_obj_is_carray(rval) ) {
21044
21045
  CArray *cv_pre_;
@@ -21402,7 +21403,7 @@ bsearch_addr_ki_native_fixlen (VALUE self, CArray *ca, VALUE rval, int axis)
21402
21403
  {
21403
21404
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
21404
21405
  all dim==1 etc. to a Ruby Float and route it through the Case A
21405
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
21406
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
21406
21407
  downstream). */
21407
21408
  if ( rb_obj_is_carray(rval) ) {
21408
21409
  CArray *cv_pre_;
@@ -21851,7 +21852,7 @@ search_addr_ki_native_i8 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE re
21851
21852
  {
21852
21853
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
21853
21854
  all dim==1 etc. to a Ruby Float and route it through the Case A
21854
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
21855
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
21855
21856
  downstream). */
21856
21857
  if ( rb_obj_is_carray(rval) ) {
21857
21858
  CArray *cv_pre_;
@@ -22198,7 +22199,7 @@ search_addr_ki_native_u8 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE re
22198
22199
  {
22199
22200
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
22200
22201
  all dim==1 etc. to a Ruby Float and route it through the Case A
22201
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
22202
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
22202
22203
  downstream). */
22203
22204
  if ( rb_obj_is_carray(rval) ) {
22204
22205
  CArray *cv_pre_;
@@ -22545,7 +22546,7 @@ search_addr_ki_native_i16 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE r
22545
22546
  {
22546
22547
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
22547
22548
  all dim==1 etc. to a Ruby Float and route it through the Case A
22548
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
22549
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
22549
22550
  downstream). */
22550
22551
  if ( rb_obj_is_carray(rval) ) {
22551
22552
  CArray *cv_pre_;
@@ -22892,7 +22893,7 @@ search_addr_ki_native_u16 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE r
22892
22893
  {
22893
22894
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
22894
22895
  all dim==1 etc. to a Ruby Float and route it through the Case A
22895
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
22896
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
22896
22897
  downstream). */
22897
22898
  if ( rb_obj_is_carray(rval) ) {
22898
22899
  CArray *cv_pre_;
@@ -23239,7 +23240,7 @@ search_addr_ki_native_i32 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE r
23239
23240
  {
23240
23241
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
23241
23242
  all dim==1 etc. to a Ruby Float and route it through the Case A
23242
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
23243
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
23243
23244
  downstream). */
23244
23245
  if ( rb_obj_is_carray(rval) ) {
23245
23246
  CArray *cv_pre_;
@@ -23586,7 +23587,7 @@ search_addr_ki_native_u32 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE r
23586
23587
  {
23587
23588
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
23588
23589
  all dim==1 etc. to a Ruby Float and route it through the Case A
23589
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
23590
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
23590
23591
  downstream). */
23591
23592
  if ( rb_obj_is_carray(rval) ) {
23592
23593
  CArray *cv_pre_;
@@ -23933,7 +23934,7 @@ search_addr_ki_native_i64 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE r
23933
23934
  {
23934
23935
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
23935
23936
  all dim==1 etc. to a Ruby Float and route it through the Case A
23936
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
23937
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
23937
23938
  downstream). */
23938
23939
  if ( rb_obj_is_carray(rval) ) {
23939
23940
  CArray *cv_pre_;
@@ -24280,7 +24281,7 @@ search_addr_ki_native_u64 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE r
24280
24281
  {
24281
24282
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
24282
24283
  all dim==1 etc. to a Ruby Float and route it through the Case A
24283
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
24284
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
24284
24285
  downstream). */
24285
24286
  if ( rb_obj_is_carray(rval) ) {
24286
24287
  CArray *cv_pre_;
@@ -24627,7 +24628,7 @@ search_addr_ki_native_f32 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE r
24627
24628
  {
24628
24629
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
24629
24630
  all dim==1 etc. to a Ruby Float and route it through the Case A
24630
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
24631
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
24631
24632
  downstream). */
24632
24633
  if ( rb_obj_is_carray(rval) ) {
24633
24634
  CArray *cv_pre_;
@@ -24972,7 +24973,7 @@ search_addr_ki_native_f64 (VALUE self, CArray *ca, VALUE rval, int axis, VALUE r
24972
24973
  {
24973
24974
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
24974
24975
  all dim==1 etc. to a Ruby Float and route it through the Case A
24975
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
24976
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
24976
24977
  downstream). */
24977
24978
  if ( rb_obj_is_carray(rval) ) {
24978
24979
  CArray *cv_pre_;
@@ -25317,7 +25318,7 @@ search_addr_ki_native_bool (VALUE self, CArray *ca, VALUE rval, int axis, VALUE
25317
25318
  {
25318
25319
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
25319
25320
  all dim==1 etc. to a Ruby Float and route it through the Case A
25320
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
25321
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
25321
25322
  downstream). */
25322
25323
  if ( rb_obj_is_carray(rval) ) {
25323
25324
  CArray *cv_pre_;
@@ -25664,7 +25665,7 @@ search_addr_ki_native_object (VALUE self, CArray *ca, VALUE rval, int axis, VALU
25664
25665
  {
25665
25666
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
25666
25667
  all dim==1 etc. to a Ruby Float and route it through the Case A
25667
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
25668
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
25668
25669
  downstream). */
25669
25670
  if ( rb_obj_is_carray(rval) ) {
25670
25671
  CArray *cv_pre_;
@@ -26009,7 +26010,7 @@ search_addr_ki_native_fixlen (VALUE self, CArray *ca, VALUE rval, int axis, VALU
26009
26010
  {
26010
26011
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
26011
26012
  all dim==1 etc. to a Ruby Float and route it through the Case A
26012
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
26013
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
26013
26014
  downstream). */
26014
26015
  if ( rb_obj_is_carray(rval) ) {
26015
26016
  CArray *cv_pre_;
@@ -26449,7 +26450,7 @@ search_nearest_addr_ki_native_i8 (VALUE self, CArray *ca, VALUE rval, int axis)
26449
26450
  {
26450
26451
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
26451
26452
  all dim==1 etc. to a Ruby Float and route it through the Case A
26452
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
26453
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
26453
26454
  downstream). */
26454
26455
  if ( rb_obj_is_carray(rval) ) {
26455
26456
  CArray *cv_pre_;
@@ -26797,7 +26798,7 @@ search_nearest_addr_ki_native_u8 (VALUE self, CArray *ca, VALUE rval, int axis)
26797
26798
  {
26798
26799
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
26799
26800
  all dim==1 etc. to a Ruby Float and route it through the Case A
26800
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
26801
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
26801
26802
  downstream). */
26802
26803
  if ( rb_obj_is_carray(rval) ) {
26803
26804
  CArray *cv_pre_;
@@ -27145,7 +27146,7 @@ search_nearest_addr_ki_native_i16 (VALUE self, CArray *ca, VALUE rval, int axis)
27145
27146
  {
27146
27147
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
27147
27148
  all dim==1 etc. to a Ruby Float and route it through the Case A
27148
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
27149
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
27149
27150
  downstream). */
27150
27151
  if ( rb_obj_is_carray(rval) ) {
27151
27152
  CArray *cv_pre_;
@@ -27493,7 +27494,7 @@ search_nearest_addr_ki_native_u16 (VALUE self, CArray *ca, VALUE rval, int axis)
27493
27494
  {
27494
27495
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
27495
27496
  all dim==1 etc. to a Ruby Float and route it through the Case A
27496
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
27497
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
27497
27498
  downstream). */
27498
27499
  if ( rb_obj_is_carray(rval) ) {
27499
27500
  CArray *cv_pre_;
@@ -27841,7 +27842,7 @@ search_nearest_addr_ki_native_i32 (VALUE self, CArray *ca, VALUE rval, int axis)
27841
27842
  {
27842
27843
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
27843
27844
  all dim==1 etc. to a Ruby Float and route it through the Case A
27844
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
27845
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
27845
27846
  downstream). */
27846
27847
  if ( rb_obj_is_carray(rval) ) {
27847
27848
  CArray *cv_pre_;
@@ -28189,7 +28190,7 @@ search_nearest_addr_ki_native_u32 (VALUE self, CArray *ca, VALUE rval, int axis)
28189
28190
  {
28190
28191
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
28191
28192
  all dim==1 etc. to a Ruby Float and route it through the Case A
28192
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
28193
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
28193
28194
  downstream). */
28194
28195
  if ( rb_obj_is_carray(rval) ) {
28195
28196
  CArray *cv_pre_;
@@ -28537,7 +28538,7 @@ search_nearest_addr_ki_native_i64 (VALUE self, CArray *ca, VALUE rval, int axis)
28537
28538
  {
28538
28539
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
28539
28540
  all dim==1 etc. to a Ruby Float and route it through the Case A
28540
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
28541
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
28541
28542
  downstream). */
28542
28543
  if ( rb_obj_is_carray(rval) ) {
28543
28544
  CArray *cv_pre_;
@@ -28885,7 +28886,7 @@ search_nearest_addr_ki_native_u64 (VALUE self, CArray *ca, VALUE rval, int axis)
28885
28886
  {
28886
28887
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
28887
28888
  all dim==1 etc. to a Ruby Float and route it through the Case A
28888
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
28889
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
28889
28890
  downstream). */
28890
28891
  if ( rb_obj_is_carray(rval) ) {
28891
28892
  CArray *cv_pre_;
@@ -29233,7 +29234,7 @@ search_nearest_addr_ki_native_f32 (VALUE self, CArray *ca, VALUE rval, int axis)
29233
29234
  {
29234
29235
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
29235
29236
  all dim==1 etc. to a Ruby Float and route it through the Case A
29236
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
29237
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
29237
29238
  downstream). */
29238
29239
  if ( rb_obj_is_carray(rval) ) {
29239
29240
  CArray *cv_pre_;
@@ -29581,7 +29582,7 @@ search_nearest_addr_ki_native_f64 (VALUE self, CArray *ca, VALUE rval, int axis)
29581
29582
  {
29582
29583
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
29583
29584
  all dim==1 etc. to a Ruby Float and route it through the Case A
29584
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
29585
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
29585
29586
  downstream). */
29586
29587
  if ( rb_obj_is_carray(rval) ) {
29587
29588
  CArray *cv_pre_;
@@ -29929,7 +29930,7 @@ search_nearest_addr_ki_native_bool (VALUE self, CArray *ca, VALUE rval, int axis
29929
29930
  {
29930
29931
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
29931
29932
  all dim==1 etc. to a Ruby Float and route it through the Case A
29932
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
29933
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
29933
29934
  downstream). */
29934
29935
  if ( rb_obj_is_carray(rval) ) {
29935
29936
  CArray *cv_pre_;
@@ -30277,7 +30278,7 @@ search_nearest_addr_ki_native_object (VALUE self, CArray *ca, VALUE rval, int ax
30277
30278
  {
30278
30279
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
30279
30280
  all dim==1 etc. to a Ruby Float and route it through the Case A
30280
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
30281
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
30281
30282
  downstream). */
30282
30283
  if ( rb_obj_is_carray(rval) ) {
30283
30284
  CArray *cv_pre_;
@@ -30721,7 +30722,7 @@ linear_section_binary_ki_native_f64 (VALUE self, CArray *ca, VALUE rval, int axi
30721
30722
  {
30722
30723
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
30723
30724
  all dim==1 etc. to a Ruby Float and route it through the Case A
30724
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
30725
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
30725
30726
  downstream). */
30726
30727
  if ( rb_obj_is_carray(rval) ) {
30727
30728
  CArray *cv_pre_;
@@ -31268,7 +31269,7 @@ linear_section_linear_ki_native_f64 (VALUE self, CArray *ca, VALUE rval, int axi
31268
31269
  {
31269
31270
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
31270
31271
  all dim==1 etc. to a Ruby Float and route it through the Case A
31271
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
31272
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
31272
31273
  downstream). */
31273
31274
  if ( rb_obj_is_carray(rval) ) {
31274
31275
  CArray *cv_pre_;
@@ -31717,7 +31718,7 @@ linear_fetch_ki_native_f64 (VALUE self, CArray *ca, VALUE rval, int axis)
31717
31718
  {
31718
31719
  /* rev4 A1 via single-element CArray: convert CScalar / [1] 1-D /
31719
31720
  all dim==1 etc. to a Ruby Float and route it through the Case A
31720
- scalar path. The dtype matches ca (= rb_ca_obj2ptr coerces it
31721
+ scalar path. The data type matches ca (= rb_ca_obj2ptr coerces it
31721
31722
  downstream). */
31722
31723
  if ( rb_obj_is_carray(rval) ) {
31723
31724
  CArray *cv_pre_;