(a: &[Self; N], b: &[Self; N], choice: Choice)
| 47 | /// Select between `a` and `b` in constant-time based on `choice`. |
| 48 | #[must_use] |
| 49 | fn ct_select_array(a: &[Self; N], b: &[Self; N], choice: Choice) -> [Self; N] { |
| 50 | core::array::from_fn(|i| Self::ct_select(&a[i], &b[i], choice)) |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | impl<T, const N: usize> CtSelect for [T; N] |
nothing calls this directly
no test coverage detected