fixed width specific impls

This commit is contained in:
2024-09-12 10:10:04 -07:00
parent 6cb639317c
commit 5646bd3b5a
4 changed files with 91 additions and 2 deletions

@ -164,6 +164,10 @@ macro_rules! impl_vector {
$crate::impl_vector_shift_operator!(Shl, shl);
$crate::impl_vector_shift_assign_operator!(ShrAssign, shr_assign);
$crate::impl_vector_shift_operator!(Shr, shr);
// dedicated methods for this type
#[cfg(feature="fixed-wide")]
$crate::impl_fixed_wide_vector!();
}
}
#[doc(hidden)]