@@ -1655,16 +1655,16 @@ where
16551655/// Helper function to perform boolean lambda function on values from two arrays using
16561656/// SIMD.
16571657#[ cfg( feature = "simd" ) ]
1658- fn simd_compare_op < T , SIMD_OP , SCALAR_OP > (
1658+ fn simd_compare_op < T , SI , SC > (
16591659 left : & PrimitiveArray < T > ,
16601660 right : & PrimitiveArray < T > ,
1661- simd_op : SIMD_OP ,
1662- scalar_op : SCALAR_OP ,
1661+ simd_op : SI ,
1662+ scalar_op : SC ,
16631663) -> Result < BooleanArray >
16641664where
16651665 T : ArrowNumericType ,
1666- SIMD_OP : Fn ( T :: Simd , T :: Simd ) -> T :: SimdMask ,
1667- SCALAR_OP : Fn ( T :: Native , T :: Native ) -> bool ,
1666+ SI : Fn ( T :: Simd , T :: Simd ) -> T :: SimdMask ,
1667+ SC : Fn ( T :: Native , T :: Native ) -> bool ,
16681668{
16691669 use std:: borrow:: BorrowMut ;
16701670
@@ -1755,16 +1755,16 @@ where
17551755/// Helper function to perform boolean lambda function on values from an array and a scalar value using
17561756/// SIMD.
17571757#[ cfg( feature = "simd" ) ]
1758- fn simd_compare_op_scalar < T , SIMD_OP , SCALAR_OP > (
1758+ fn simd_compare_op_scalar < T , SI , SC > (
17591759 left : & PrimitiveArray < T > ,
17601760 right : T :: Native ,
1761- simd_op : SIMD_OP ,
1762- scalar_op : SCALAR_OP ,
1761+ simd_op : SI ,
1762+ scalar_op : SC ,
17631763) -> Result < BooleanArray >
17641764where
17651765 T : ArrowNumericType ,
1766- SIMD_OP : Fn ( T :: Simd , T :: Simd ) -> T :: SimdMask ,
1767- SCALAR_OP : Fn ( T :: Native , T :: Native ) -> bool ,
1766+ SI : Fn ( T :: Simd , T :: Simd ) -> T :: SimdMask ,
1767+ SC : Fn ( T :: Native , T :: Native ) -> bool ,
17681768{
17691769 use std:: borrow:: BorrowMut ;
17701770
0 commit comments