(n: usize)
| 28 | use std::{hint, sync::Arc}; |
| 29 | |
| 30 | fn array_from_vec(n: usize) { |
| 31 | let v: Vec<i32> = (0..n as i32).collect(); |
| 32 | hint::black_box(Int32Array::from(v)); |
| 33 | } |
| 34 | |
| 35 | fn array_string_from_vec(n: usize) { |
| 36 | let mut v: Vec<Option<&str>> = Vec::with_capacity(n); |
no test coverage detected