use Alignment;
/// Alignment to twice the alignment of `A`.
///
/// This size is always equal to twice the size of `A`.
///
/// # Examples
/// ```rust
/// use aligners::alignment::{self, Alignment};
///
/// assert_eq!(alignment::Twice::<alignment::TwoTo::<2>>::size(), 2 * alignment::TwoTo::<2>::size());
/// ```
// SAFETY:
// Safe as long as the impl for `SimdBlock` is safe, since we multiply by 2.
unsafe