const generic expr based fixed length array manipulation crate
Diffstat (limited to 'src/pervasive.rs')
| -rw-r--r-- | src/pervasive.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pervasive.rs b/src/pervasive.rs index 26aa907..7dc784c 100644 --- a/src/pervasive.rs +++ b/src/pervasive.rs @@ -69,7 +69,7 @@ mod array_and_array { impl<T: core::ops::$op<Output = T> + Copy, const N: usize> $n<T, N> for [T; N] { fn $name(self, rhs: [T; N]) -> Self { - use crate::ArrayTools; + use crate::Zip; self.zip(rhs).map(|(a, b)| core::ops::$op::$f(a, b)) } } |