@@ -150,7 +150,7 @@ fn bench_take_filter(bencher: Bencher, array: ArrayRef, indices: ArrayRef) {
150150}
151151
152152#[ divan:: bench( args = NUM_INDICES , consts = FILTERED_LENS ) ]
153- fn take_filter_slice_mask_sequential_indices < const FILTERED_LEN : usize > (
153+ fn take_filter_primitive_slice_mask_sequential_indices < const FILTERED_LEN : usize > (
154154 bencher : Bencher ,
155155 num_indices : usize ,
156156) {
@@ -161,7 +161,7 @@ fn take_filter_slice_mask_sequential_indices<const FILTERED_LEN: usize>(
161161}
162162
163163#[ divan:: bench( args = NUM_INDICES , consts = FILTERED_LENS ) ]
164- fn take_filter_slice_mask_random_indices < const FILTERED_LEN : usize > (
164+ fn take_filter_primitive_slice_mask_random_indices < const FILTERED_LEN : usize > (
165165 bencher : Bencher ,
166166 num_indices : usize ,
167167) {
@@ -172,7 +172,7 @@ fn take_filter_slice_mask_random_indices<const FILTERED_LEN: usize>(
172172}
173173
174174#[ divan:: bench( args = NUM_INDICES , consts = FILTERED_LENS ) ]
175- fn take_filter_random_mask_sequential_indices < const FILTERED_LEN : usize > (
175+ fn take_filter_primitive_random_mask_sequential_indices < const FILTERED_LEN : usize > (
176176 bencher : Bencher ,
177177 num_indices : usize ,
178178) {
@@ -183,7 +183,7 @@ fn take_filter_random_mask_sequential_indices<const FILTERED_LEN: usize>(
183183}
184184
185185#[ divan:: bench( args = NUM_INDICES , consts = FILTERED_LENS ) ]
186- fn take_filter_random_mask_random_indices < const FILTERED_LEN : usize > (
186+ fn take_filter_primitive_random_mask_random_indices < const FILTERED_LEN : usize > (
187187 bencher : Bencher ,
188188 num_indices : usize ,
189189) {
@@ -326,7 +326,7 @@ fn take_filter_string_random_mask_random_indices<const FILTERED_LEN: usize>(
326326}
327327
328328#[ divan:: bench( args = NUM_INDICES , consts = FILTERED_LENS ) ]
329- fn take_filter_nullable_slice_mask_random_indices < const FILTERED_LEN : usize > (
329+ fn take_filter_primitive_nullable_slice_mask_random_indices < const FILTERED_LEN : usize > (
330330 bencher : Bencher ,
331331 num_indices : usize ,
332332) {
@@ -337,7 +337,7 @@ fn take_filter_nullable_slice_mask_random_indices<const FILTERED_LEN: usize>(
337337}
338338
339339#[ divan:: bench( args = NUM_INDICES , consts = FILTERED_LENS ) ]
340- fn take_filter_nullable_random_mask_random_indices < const FILTERED_LEN : usize > (
340+ fn take_filter_primitive_nullable_random_mask_random_indices < const FILTERED_LEN : usize > (
341341 bencher : Bencher ,
342342 num_indices : usize ,
343343) {
@@ -381,7 +381,7 @@ fn take_filter_string_nullable_random_mask_random_indices<const FILTERED_LEN: us
381381}
382382
383383#[ divan:: bench( args = LARGE_TAKE_CASES ) ]
384- fn take_filter_large_random_mask_random_indices (
384+ fn take_filter_primitive_large_random_mask_random_indices (
385385 bencher : Bencher ,
386386 ( filtered_len, num_indices) : ( usize , usize ) ,
387387) {
0 commit comments