Trait std::ops::Shl 1.0.0[−][src]
The left shift operator <<
. Note that because this trait is implemented
for all integer types with multiple right-hand-side types, Rust's type
checker has special handling for _ << _
, setting the result type for
integer operations to the type of the left-hand-side operand. This means
that though a << b
and a.shl(b)
are one and the same from an evaluation
standpoint, they are different when it comes to type inference.
Examples
An implementation of Shl
that lifts the <<
operation on integers to a
wrapper around usize
.
use std::ops::Shl; #[derive(PartialEq, Debug)] struct Scalar(usize); impl Shl<Scalar> for Scalar { type Output = Self; fn shl(self, Scalar(rhs): Self) -> Scalar { let Scalar(lhs) = self; Scalar(lhs << rhs) } } assert_eq!(Scalar(4) << Scalar(2), Scalar(16));Run
An implementation of Shl
that spins a vector leftward by a given amount.
use std::ops::Shl; #[derive(PartialEq, Debug)] struct SpinVector<T: Clone> { vec: Vec<T>, } impl<T: Clone> Shl<usize> for SpinVector<T> { type Output = Self; fn shl(self, rhs: usize) -> SpinVector<T> { // Rotate the vector by `rhs` places. let (a, b) = self.vec.split_at(rhs); let mut spun_vector: Vec<T> = vec![]; spun_vector.extend_from_slice(b); spun_vector.extend_from_slice(a); SpinVector { vec: spun_vector } } } assert_eq!(SpinVector { vec: vec![0, 1, 2, 3, 4] } << 2, SpinVector { vec: vec![2, 3, 4, 0, 1] });Run
Associated Types
type Output
The resulting type after applying the <<
operator.
Required Methods
Implementors
impl Shl<i32> for i8x2 type Output = i8x2;
impl<'a, 'b> Shl<&'a i32> for &'b usize type Output = <usize as Shl<i32>>::Output;
impl Shl<i16> for i32x4 type Output = i32x4;
impl<'a, 'b> Shl<&'a u8> for &'b u32 type Output = <u32 as Shl<u8>>::Output;
impl Shl<isize> for u64x8 type Output = u64x8;
impl Shl<isize> for u64 type Output = u64;
impl<'a> Shl<i32> for &'a u128 type Output = <u128 as Shl<i32>>::Output;
impl Shl<i32> for u8x4 type Output = u8x4;
impl<'a, 'b> Shl<&'a isize> for &'b u16 type Output = <u16 as Shl<isize>>::Output;
impl<'a> Shl<&'a i8> for u128 type Output = <u128 as Shl<i8>>::Output;
impl Shl<u128> for u16 type Output = u16;
impl<'a> Shl<i32> for &'a u8 type Output = <u8 as Shl<i32>>::Output;
impl Shl<i64> for u8x16 type Output = u8x16;
impl<'a> Shl<&'a i16> for u8 type Output = <u8 as Shl<i16>>::Output;
impl<'a, 'b> Shl<&'a isize> for &'b i32 type Output = <i32 as Shl<isize>>::Output;
impl Shl<i64> for i64 type Output = i64;
impl<'a> Shl<i64> for &'a u64 type Output = <u64 as Shl<i64>>::Output;
impl Shl<u32> for i32x2 type Output = i32x2;
impl Shl<i16> for u32x16 type Output = u32x16;
impl<'a> Shl<&'a usize> for i8 type Output = <i8 as Shl<usize>>::Output;
impl<'a, 'b> Shl<&'a i32> for &'b i128 type Output = <i128 as Shl<i32>>::Output;
impl<'a, 'b> Shl<&'a u128> for &'b u128 type Output = <u128 as Shl<u128>>::Output;
impl Shl<u64> for u32 type Output = u32;
impl Shl<u16> for i32x2 type Output = i32x2;
impl<'a> Shl<&'a u8> for i64 type Output = <i64 as Shl<u8>>::Output;
impl<'a, 'b> Shl<&'a i128> for &'b i64 type Output = <i64 as Shl<i128>>::Output;
impl<'a> Shl<&'a i128> for isize type Output = <isize as Shl<i128>>::Output;
impl<'a, 'b> Shl<&'a u16> for &'b u16 type Output = <u16 as Shl<u16>>::Output;
impl Shl<i8> for u16 type Output = u16;
impl<'a> Shl<&'a u32> for u128 type Output = <u128 as Shl<u32>>::Output;
impl Shl<u8> for u32x8 type Output = u32x8;
impl Shl<isize> for u16x16 type Output = u16x16;
impl Shl<isize> for u8 type Output = u8;
impl<'a, 'b> Shl<&'a i16> for &'b u16 type Output = <u16 as Shl<i16>>::Output;
impl<'a> Shl<&'a i16> for isize type Output = <isize as Shl<i16>>::Output;
impl<'a> Shl<u128> for &'a i128 type Output = <i128 as Shl<u128>>::Output;
impl<'a, 'b> Shl<&'a isize> for &'b isize type Output = <isize as Shl<isize>>::Output;
impl<'a> Shl<i64> for &'a u32 type Output = <u32 as Shl<i64>>::Output;
impl Shl<u64> for i32x16 type Output = i32x16;
impl Shl<usize> for u16x4 type Output = u16x4;
impl Shl<u16> for i16 type Output = i16;
impl<'a> Shl<&'a i64> for u16 type Output = <u16 as Shl<i64>>::Output;
impl Shl<i16> for i8x64 type Output = i8x64;
impl<'a> Shl<u32> for &'a i64 type Output = <i64 as Shl<u32>>::Output;
impl Shl<u32> for i8x4 type Output = i8x4;
impl Shl<u64> for i8x32 type Output = i8x32;
impl<'a> Shl<i64> for &'a i128 type Output = <i128 as Shl<i64>>::Output;
impl<'a> Shl<u128> for &'a u32 type Output = <u32 as Shl<u128>>::Output;
impl<'a, 'b> Shl<&'a i128> for &'b i8 type Output = <i8 as Shl<i128>>::Output;
impl Shl<u8> for u16x4 type Output = u16x4;
impl<'a> Shl<isize> for &'a i64 type Output = <i64 as Shl<isize>>::Output;
impl<'a> Shl<i8> for &'a u64 type Output = <u64 as Shl<i8>>::Output;
impl<'a, 'b> Shl<&'a u64> for &'b i64 type Output = <i64 as Shl<u64>>::Output;
impl<'a, 'b> Shl<&'a u32> for &'b isize type Output = <isize as Shl<u32>>::Output;
impl Shl<isize> for i16x8 type Output = i16x8;
impl Shl<i16> for u32x8 type Output = u32x8;
impl Shl<u32> for i8 type Output = i8;
impl<'a> Shl<i32> for &'a i16 type Output = <i16 as Shl<i32>>::Output;
impl Shl<i16> for u16 type Output = u16;
impl Shl<u64> for i16 type Output = i16;
impl Shl<i64> for u16x32 type Output = u16x32;
impl<'a, 'b> Shl<&'a u16> for &'b i64 type Output = <i64 as Shl<u16>>::Output;
impl<'a> Shl<&'a usize> for isize type Output = <isize as Shl<usize>>::Output;
impl<'a> Shl<&'a u8> for u128 type Output = <u128 as Shl<u8>>::Output;
impl Shl<usize> for u8x16 type Output = u8x16;
impl<'a> Shl<&'a i32> for i128 type Output = <i128 as Shl<i32>>::Output;
impl Shl<i16> for i64x8 type Output = i64x8;
impl Shl<u64> for u128 type Output = u128;
impl Shl<usize> for Wrapping<isize> type Output = Wrapping<isize>;
impl Shl<u32> for i128 type Output = i128;
impl Shl<u8> for i8x8 type Output = i8x8;
impl<'a> Shl<&'a i64> for i32 type Output = <i32 as Shl<i64>>::Output;
impl Shl<u8> for i32x2 type Output = i32x2;
impl Shl<i128> for i8 type Output = i8;
impl<'a> Shl<&'a u32> for u8 type Output = <u8 as Shl<u32>>::Output;
impl Shl<u64> for u64 type Output = u64;
impl<'a> Shl<u128> for &'a isize type Output = <isize as Shl<u128>>::Output;
impl Shl<u64x8> for u64x8 type Output = u64x8;
impl<'a, 'b> Shl<&'a i128> for &'b u16 type Output = <u16 as Shl<i128>>::Output;
impl<'a> Shl<i128> for &'a i64 type Output = <i64 as Shl<i128>>::Output;
impl Shl<usize> for Wrapping<usize> type Output = Wrapping<usize>;
impl<'a, 'b> Shl<&'a i16> for &'b usize type Output = <usize as Shl<i16>>::Output;
impl Shl<u16> for u16x8 type Output = u16x8;
impl Shl<u64> for i8x4 type Output = i8x4;
impl Shl<usize> for i128 type Output = i128;
impl Shl<isize> for u32x4 type Output = u32x4;
impl<'a> Shl<u64> for &'a u16 type Output = <u16 as Shl<u64>>::Output;
impl Shl<u64> for u8x8 type Output = u8x8;
impl Shl<isize> for i8x16 type Output = i8x16;
impl<'a, 'b> Shl<&'a i32> for &'b u8 type Output = <u8 as Shl<i32>>::Output;
impl Shl<i8> for i16x8 type Output = i16x8;
impl<'a> Shl<u32> for &'a u8 type Output = <u8 as Shl<u32>>::Output;
impl<'a> Shl<u64> for &'a u64 type Output = <u64 as Shl<u64>>::Output;
impl Shl<u64> for u8x64 type Output = u8x64;
impl<'a> Shl<&'a i32> for isize type Output = <isize as Shl<i32>>::Output;
impl Shl<isize> for u8x2 type Output = u8x2;
impl Shl<i64> for i16x16 type Output = i16x16;
impl<'a> Shl<&'a u32> for i64 type Output = <i64 as Shl<u32>>::Output;
impl<'a> Shl<&'a i64> for i16 type Output = <i16 as Shl<i64>>::Output;
impl<'a> Shl<i128> for &'a i16 type Output = <i16 as Shl<i128>>::Output;
impl Shl<u32> for i16x16 type Output = i16x16;
impl<'a> Shl<&'a u128> for i8 type Output = <i8 as Shl<u128>>::Output;
impl Shl<i32> for u8x2 type Output = u8x2;
impl<'a> Shl<&'a usize> for u64 type Output = <u64 as Shl<usize>>::Output;
impl<'a> Shl<&'a isize> for i8 type Output = <i8 as Shl<isize>>::Output;
impl Shl<usize> for Wrapping<u16> type Output = Wrapping<u16>;
impl<'a> Shl<&'a isize> for isize type Output = <isize as Shl<isize>>::Output;
impl Shl<i16> for i16x8 type Output = i16x8;
impl Shl<i32> for u32x4 type Output = u32x4;
impl<'a> Shl<&'a isize> for u64 type Output = <u64 as Shl<isize>>::Output;
impl<'a> Shl<&'a i128> for i32 type Output = <i32 as Shl<i128>>::Output;
impl<'a> Shl<&'a isize> for i32 type Output = <i32 as Shl<isize>>::Output;
impl Shl<u16> for i8x32 type Output = i8x32;
impl<'a> Shl<&'a u128> for u32 type Output = <u32 as Shl<u128>>::Output;
impl<'a> Shl<&'a i64> for u64 type Output = <u64 as Shl<i64>>::Output;
impl<'a> Shl<&'a i128> for i16 type Output = <i16 as Shl<i128>>::Output;
impl Shl<i8> for u8x4 type Output = u8x4;
impl Shl<i64x4> for i64x4 type Output = i64x4;
impl<'a> Shl<&'a u32> for u16 type Output = <u16 as Shl<u32>>::Output;
impl Shl<u16> for u16x16 type Output = u16x16;
impl<'a> Shl<&'a u8> for u32 type Output = <u32 as Shl<u8>>::Output;
impl<'a, 'b> Shl<&'a i32> for &'b u128 type Output = <u128 as Shl<i32>>::Output;
impl Shl<u16x16> for u16x16 type Output = u16x16;
impl Shl<u8> for u8x8 type Output = u8x8;
impl Shl<u64> for i16x4 type Output = i16x4;
impl Shl<u64> for i32x4 type Output = i32x4;
impl Shl<i16> for i8x32 type Output = i8x32;
impl Shl<u16> for i8x64 type Output = i8x64;
impl Shl<u64x2> for u64x2 type Output = u64x2;
impl Shl<i32> for u128 type Output = u128;
impl Shl<u64> for i32 type Output = i32;
impl Shl<i16> for u16x8 type Output = u16x8;
impl Shl<isize> for i32x2 type Output = i32x2;
impl Shl<u8> for i16x4 type Output = i16x4;
impl<'a, 'b> Shl<&'a usize> for &'b u16 type Output = <u16 as Shl<usize>>::Output;
impl Shl<i32> for i16x2 type Output = i16x2;
impl Shl<i16x4> for i16x4 type Output = i16x4;
impl<'a> Shl<&'a i16> for u128 type Output = <u128 as Shl<i16>>::Output;
impl<'a> Shl<&'a u16> for u8 type Output = <u8 as Shl<u16>>::Output;
impl Shl<isize> for u8x64 type Output = u8x64;
impl Shl<u64> for u16x2 type Output = u16x2;
impl Shl<u64> for u8x4 type Output = u8x4;
impl<'a, 'b> Shl<&'a i8> for &'b u8 type Output = <u8 as Shl<i8>>::Output;
impl Shl<u64> for u64x8 type Output = u64x8;
impl<'a, 'b> Shl<&'a u8> for &'b u128 type Output = <u128 as Shl<u8>>::Output;
impl<'a, 'b> Shl<&'a i16> for &'b i64 type Output = <i64 as Shl<i16>>::Output;
impl Shl<i32> for i32x8 type Output = i32x8;
impl Shl<usize> for i8x2 type Output = i8x2;
impl<'a> Shl<u128> for &'a u128 type Output = <u128 as Shl<u128>>::Output;
impl Shl<i32> for u16 type Output = u16;
impl<'a> Shl<&'a i32> for i32 type Output = <i32 as Shl<i32>>::Output;
impl<'a, 'b> Shl<&'a i32> for &'b u64 type Output = <u64 as Shl<i32>>::Output;
impl Shl<i8> for u16x32 type Output = u16x32;
impl<'a, 'b> Shl<&'a u16> for &'b i16 type Output = <i16 as Shl<u16>>::Output;
impl Shl<u64> for u32x2 type Output = u32x2;
impl Shl<i64> for u8x32 type Output = u8x32;
impl Shl<i64> for u8x2 type Output = u8x2;
impl Shl<i32> for i32x2 type Output = i32x2;
impl Shl<u128> for i128 type Output = i128;
impl<'a> Shl<isize> for &'a isize type Output = <isize as Shl<isize>>::Output;
impl Shl<i8x4> for i8x4 type Output = i8x4;
impl<'a, 'b> Shl<&'a i8> for &'b u64 type Output = <u64 as Shl<i8>>::Output;
impl Shl<u32> for i8x32 type Output = i8x32;
impl<'a> Shl<&'a u128> for u64 type Output = <u64 as Shl<u128>>::Output;
impl Shl<isize> for i8x2 type Output = i8x2;
impl Shl<u16> for u32x2 type Output = u32x2;
impl<'a, 'b> Shl<&'a u32> for &'b u32 type Output = <u32 as Shl<u32>>::Output;
impl Shl<u8> for i32x16 type Output = i32x16;
impl Shl<i32> for i16x8 type Output = i16x8;
impl<'a> Shl<&'a isize> for u32 type Output = <u32 as Shl<isize>>::Output;
impl<'a> Shl<&'a i16> for usize type Output = <usize as Shl<i16>>::Output;
impl<'a, 'b> Shl<&'a i64> for &'b i32 type Output = <i32 as Shl<i64>>::Output;
impl Shl<i16> for u64 type Output = u64;
impl<'a> Shl<&'a u8> for i16 type Output = <i16 as Shl<u8>>::Output;
impl<'a, 'b> Shl<&'a usize> for &'b i128 type Output = <i128 as Shl<usize>>::Output;
impl<'a, 'b> Shl<&'a u64> for &'b i16 type Output = <i16 as Shl<u64>>::Output;
impl Shl<i8> for u64x8 type Output = u64x8;
impl<'a> Shl<u8> for &'a usize type Output = <usize as Shl<u8>>::Output;
impl<'a> Shl<i128> for &'a isize type Output = <isize as Shl<i128>>::Output;
impl<'a, 'b> Shl<&'a u32> for &'b u64 type Output = <u64 as Shl<u32>>::Output;
impl<'a> Shl<u16> for &'a i64 type Output = <i64 as Shl<u16>>::Output;
impl Shl<i64> for i64x2 type Output = i64x2;
impl Shl<u32> for i64x8 type Output = i64x8;
impl<'a, 'b> Shl<&'a u32> for &'b u128 type Output = <u128 as Shl<u32>>::Output;
impl<'a> Shl<usize> for &'a u8 type Output = <u8 as Shl<usize>>::Output;
impl Shl<u32> for i64x4 type Output = i64x4;
impl<'a, 'b> Shl<&'a i128> for &'b usize type Output = <usize as Shl<i128>>::Output;
impl Shl<isize> for i16x2 type Output = i16x2;
impl Shl<usize> for u8x4 type Output = u8x4;
impl Shl<i16> for u16x32 type Output = u16x32;
impl Shl<u64> for i64 type Output = i64;
impl<'a, 'b> Shl<&'a usize> for &'b i32 type Output = <i32 as Shl<usize>>::Output;
impl Shl<isize> for u8x8 type Output = u8x8;
impl<'a, 'b> Shl<&'a isize> for &'b i64 type Output = <i64 as Shl<isize>>::Output;
impl Shl<u8> for i8 type Output = i8;
impl<'a> Shl<&'a i32> for i16 type Output = <i16 as Shl<i32>>::Output;
impl Shl<i32> for u8x16 type Output = u8x16;
impl Shl<u32> for u32x4 type Output = u32x4;
impl Shl<i128> for u32 type Output = u32;
impl Shl<i16> for u16x2 type Output = u16x2;
impl<'a, 'b> Shl<&'a isize> for &'b u32 type Output = <u32 as Shl<isize>>::Output;
impl Shl<u16> for i64x8 type Output = i64x8;
impl Shl<i32> for i8x8 type Output = i8x8;
impl<'a, 'b> Shl<&'a u16> for &'b usize type Output = <usize as Shl<u16>>::Output;
impl Shl<isize> for isize type Output = isize;
impl<'a, 'b> Shl<&'a i8> for &'b i16 type Output = <i16 as Shl<i8>>::Output;
impl<'a> Shl<u8> for &'a isize type Output = <isize as Shl<u8>>::Output;
impl Shl<i32> for u64 type Output = u64;
impl Shl<isize> for i8 type Output = i8;
impl Shl<i16> for u16x16 type Output = u16x16;
impl Shl<i64> for i32x16 type Output = i32x16;
impl Shl<u8> for usize type Output = usize;
impl<'a, 'b> Shl<&'a usize> for &'b i8 type Output = <i8 as Shl<usize>>::Output;
impl<'a, 'b> Shl<&'a usize> for &'b i16 type Output = <i16 as Shl<usize>>::Output;
impl Shl<usize> for u16 type Output = u16;
impl<'a> Shl<isize> for &'a i8 type Output = <i8 as Shl<isize>>::Output;
impl<'a> Shl<u64> for &'a u32 type Output = <u32 as Shl<u64>>::Output;
impl<'a> Shl<&'a i8> for u16 type Output = <u16 as Shl<i8>>::Output;
impl<'a> Shl<&'a u8> for u8 type Output = <u8 as Shl<u8>>::Output;
impl Shl<i64x2> for i64x2 type Output = i64x2;
impl Shl<u32> for u8x2 type Output = u8x2;
impl Shl<u8> for u8x4 type Output = u8x4;
impl<'a> Shl<i16> for &'a u32 type Output = <u32 as Shl<i16>>::Output;
impl<'a, 'b> Shl<&'a u8> for &'b u8 type Output = <u8 as Shl<u8>>::Output;
impl Shl<i16> for i32 type Output = i32;
impl<'a> Shl<&'a u32> for i8 type Output = <i8 as Shl<u32>>::Output;
impl Shl<u64> for i32x2 type Output = i32x2;
impl Shl<i16> for i8x2 type Output = i8x2;
impl<'a> Shl<&'a u32> for u64 type Output = <u64 as Shl<u32>>::Output;
impl Shl<i32x2> for i32x2 type Output = i32x2;
impl<'a> Shl<i128> for &'a i8 type Output = <i8 as Shl<i128>>::Output;
impl<'a> Shl<isize> for &'a u64 type Output = <u64 as Shl<isize>>::Output;
impl Shl<i64> for i16 type Output = i16;
impl Shl<u128> for i16 type Output = i16;
impl Shl<i16> for u8x4 type Output = u8x4;
impl<'a> Shl<&'a u64> for u32 type Output = <u32 as Shl<u64>>::Output;
impl Shl<i16> for i16 type Output = i16;
impl Shl<usize> for usize type Output = usize;
impl<'a> Shl<&'a isize> for i16 type Output = <i16 as Shl<isize>>::Output;
impl Shl<i8> for i8x16 type Output = i8x16;
impl Shl<u8> for u32x16 type Output = u32x16;
impl Shl<i32> for isize type Output = isize;
impl Shl<i64> for i8x32 type Output = i8x32;
impl<'a> Shl<i64> for &'a u8 type Output = <u8 as Shl<i64>>::Output;
impl<'a, 'b> Shl<&'a i32> for &'b i16 type Output = <i16 as Shl<i32>>::Output;
impl Shl<u32x8> for u32x8 type Output = u32x8;
impl Shl<u32> for i32 type Output = i32;
impl Shl<u16> for isize type Output = isize;
impl Shl<i64> for usize type Output = usize;
impl Shl<i64> for i64x4 type Output = i64x4;
impl Shl<i32x16> for i32x16 type Output = i32x16;
impl<'a> Shl<i64> for &'a usize type Output = <usize as Shl<i64>>::Output;
impl<'a, 'b> Shl<&'a i8> for &'b isize type Output = <isize as Shl<i8>>::Output;
impl Shl<u32> for i32x8 type Output = i32x8;
impl<'a> Shl<u64> for &'a u128 type Output = <u128 as Shl<u64>>::Output;
impl<'a, 'b> Shl<&'a u64> for &'b i32 type Output = <i32 as Shl<u64>>::Output;
impl Shl<i64> for i8x8 type Output = i8x8;
impl Shl<usize> for i8x32 type Output = i8x32;
impl Shl<isize> for i16x16 type Output = i16x16;
impl Shl<i64> for i64x8 type Output = i64x8;
impl<'a, 'b> Shl<&'a isize> for &'b usize type Output = <usize as Shl<isize>>::Output;
impl Shl<u32> for u64x4 type Output = u64x4;
impl<'a, 'b> Shl<&'a usize> for &'b usize type Output = <usize as Shl<usize>>::Output;
impl Shl<u8> for u64 type Output = u64;
impl Shl<u16> for u128 type Output = u128;
impl<'a> Shl<&'a i16> for i16 type Output = <i16 as Shl<i16>>::Output;
impl<'a> Shl<&'a i128> for u64 type Output = <u64 as Shl<i128>>::Output;
impl Shl<isize> for i16 type Output = i16;
impl Shl<u16> for i32x16 type Output = i32x16;
impl<'a> Shl<usize> for &'a u128 type Output = <u128 as Shl<usize>>::Output;
impl<'a> Shl<&'a i16> for i128 type Output = <i128 as Shl<i16>>::Output;
impl<'a, 'b> Shl<&'a u128> for &'b u8 type Output = <u8 as Shl<u128>>::Output;
impl Shl<u64> for u32x4 type Output = u32x4;
impl<'a, 'b> Shl<&'a isize> for &'b u128 type Output = <u128 as Shl<isize>>::Output;
impl<'a, 'b> Shl<&'a u16> for &'b i128 type Output = <i128 as Shl<u16>>::Output;
impl<'a, 'b> Shl<&'a u8> for &'b u64 type Output = <u64 as Shl<u8>>::Output;
impl Shl<u8> for i32 type Output = i32;
impl<'a, 'b> Shl<&'a i128> for &'b i32 type Output = <i32 as Shl<i128>>::Output;
impl Shl<isize> for i8x64 type Output = i8x64;
impl Shl<i8x8> for i8x8 type Output = i8x8;
impl<'a> Shl<usize> for &'a i128 type Output = <i128 as Shl<usize>>::Output;
impl<'a> Shl<&'a u64> for i64 type Output = <i64 as Shl<u64>>::Output;
impl<'a> Shl<i16> for &'a i128 type Output = <i128 as Shl<i16>>::Output;
impl Shl<u128> for isize type Output = isize;
impl<'a> Shl<i8> for &'a u128 type Output = <u128 as Shl<i8>>::Output;
impl Shl<u32> for u32 type Output = u32;
impl Shl<i16x32> for i16x32 type Output = i16x32;
impl Shl<i8x16> for i8x16 type Output = i8x16;
impl<'a, 'b> Shl<&'a i32> for &'b isize type Output = <isize as Shl<i32>>::Output;
impl<'a> Shl<u16> for &'a isize type Output = <isize as Shl<u16>>::Output;
impl<'a> Shl<&'a i64> for u128 type Output = <u128 as Shl<i64>>::Output;
impl<'a> Shl<&'a u128> for i16 type Output = <i16 as Shl<u128>>::Output;
impl Shl<i16> for i16x4 type Output = i16x4;
impl<'a, 'b> Shl<&'a u128> for &'b usize type Output = <usize as Shl<u128>>::Output;
impl Shl<i32> for i128 type Output = i128;
impl<'a> Shl<usize> for &'a i8 type Output = <i8 as Shl<usize>>::Output;
impl<'a, 'b> Shl<&'a u16> for &'b u32 type Output = <u32 as Shl<u16>>::Output;
impl Shl<i64> for u32 type Output = u32;
impl Shl<u64> for i16x8 type Output = i16x8;
impl Shl<u64> for isize type Output = isize;
impl<'a, 'b> Shl<&'a i32> for &'b i32 type Output = <i32 as Shl<i32>>::Output;
impl Shl<i16> for i64x4 type Output = i64x4;
impl Shl<u64> for i8x64 type Output = i8x64;
impl Shl<isize> for u8x32 type Output = u8x32;
impl Shl<u8> for u32x4 type Output = u32x4;
impl Shl<u16x32> for u16x32 type Output = u16x32;
impl<'a> Shl<&'a usize> for i64 type Output = <i64 as Shl<usize>>::Output;
impl Shl<i8> for u8x8 type Output = u8x8;
impl Shl<i32> for i16 type Output = i16;
impl Shl<usize> for u32x8 type Output = u32x8;
impl<'a, 'b> Shl<&'a i32> for &'b i64 type Output = <i64 as Shl<i32>>::Output;
impl<'a> Shl<u16> for &'a u128 type Output = <u128 as Shl<u16>>::Output;
impl Shl<u16> for i16x4 type Output = i16x4;
impl Shl<usize> for u64 type Output = u64;
impl Shl<i16> for i16x32 type Output = i16x32;
impl Shl<i16> for u32 type Output = u32;
impl Shl<i16> for i64x2 type Output = i64x2;
impl Shl<i32> for u8x8 type Output = u8x8;
impl<'a> Shl<&'a usize> for i32 type Output = <i32 as Shl<usize>>::Output;
impl<'a> Shl<i32> for &'a u32 type Output = <u32 as Shl<i32>>::Output;
impl<'a> Shl<i32> for &'a u16 type Output = <u16 as Shl<i32>>::Output;
impl Shl<u8> for i8x2 type Output = i8x2;
impl<'a> Shl<&'a i64> for i64 type Output = <i64 as Shl<i64>>::Output;
impl Shl<u8> for i64 type Output = i64;
impl Shl<u64> for u8x2 type Output = u8x2;
impl Shl<u128> for u64 type Output = u64;
impl Shl<usize> for i8x8 type Output = i8x8;
impl Shl<u128> for i32 type Output = i32;
impl<'a> Shl<i128> for &'a u8 type Output = <u8 as Shl<i128>>::Output;
impl<'a> Shl<u32> for &'a u32 type Output = <u32 as Shl<u32>>::Output;
impl<'a> Shl<i8> for &'a i64 type Output = <i64 as Shl<i8>>::Output;
impl<'a, 'b> Shl<&'a u32> for &'b i128 type Output = <i128 as Shl<u32>>::Output;
impl Shl<i8> for i32 type Output = i32;
impl<'a, 'b> Shl<&'a i64> for &'b u16 type Output = <u16 as Shl<i64>>::Output;
impl Shl<i16> for u32x2 type Output = u32x2;
impl Shl<u16> for i32x4 type Output = i32x4;
impl<'a, 'b> Shl<&'a i64> for &'b u8 type Output = <u8 as Shl<i64>>::Output;
impl Shl<i128> for i128 type Output = i128;
impl Shl<usize> for u8x64 type Output = u8x64;
impl<'a> Shl<u8> for &'a i64 type Output = <i64 as Shl<u8>>::Output;
impl<'a> Shl<&'a i32> for u32 type Output = <u32 as Shl<i32>>::Output;
impl Shl<u32> for u16x16 type Output = u16x16;
impl<'a> Shl<u128> for &'a usize type Output = <usize as Shl<u128>>::Output;
impl Shl<u8x16> for u8x16 type Output = u8x16;
impl Shl<i32> for i32x16 type Output = i32x16;
impl<'a> Shl<isize> for &'a i128 type Output = <i128 as Shl<isize>>::Output;
impl Shl<u16> for i8x4 type Output = i8x4;
impl Shl<i16> for i32x16 type Output = i32x16;
impl Shl<i128> for u128 type Output = u128;
impl<'a> Shl<i16> for &'a u16 type Output = <u16 as Shl<i16>>::Output;
impl Shl<usize> for i32 type Output = i32;
impl<'a> Shl<i32> for &'a isize type Output = <isize as Shl<i32>>::Output;
impl<'a> Shl<&'a i16> for u32 type Output = <u32 as Shl<i16>>::Output;
impl<'a, 'b> Shl<&'a u128> for &'b u32 type Output = <u32 as Shl<u128>>::Output;
impl<'a, 'b> Shl<&'a u64> for &'b u16 type Output = <u16 as Shl<u64>>::Output;
impl Shl<u64x4> for u64x4 type Output = u64x4;
impl Shl<i8> for u16x2 type Output = u16x2;
impl Shl<u16> for u64x8 type Output = u64x8;
impl<'a> Shl<&'a i8> for u8 type Output = <u8 as Shl<i8>>::Output;
impl Shl<i64> for i128 type Output = i128;
impl Shl<i32> for i64x2 type Output = i64x2;
impl Shl<u64> for i8x2 type Output = i8x2;
impl<'a> Shl<usize> for &'a usize type Output = <usize as Shl<usize>>::Output;
impl Shl<usize> for i64x4 type Output = i64x4;
impl Shl<i64> for u64x2 type Output = u64x2;
impl Shl<u32> for u16 type Output = u16;
impl<'a> Shl<&'a u128> for u16 type Output = <u16 as Shl<u128>>::Output;
impl Shl<i64> for u8x4 type Output = u8x4;
impl Shl<u64> for i8x16 type Output = i8x16;
impl Shl<isize> for u16x32 type Output = u16x32;
impl<'a> Shl<&'a i8> for u64 type Output = <u64 as Shl<i8>>::Output;
impl<'a> Shl<&'a i8> for i16 type Output = <i16 as Shl<i8>>::Output;
impl Shl<u8> for i8x64 type Output = i8x64;
impl<'a> Shl<&'a u32> for i128 type Output = <i128 as Shl<u32>>::Output;
impl<'a> Shl<i128> for &'a u16 type Output = <u16 as Shl<i128>>::Output;
impl<'a, 'b> Shl<&'a u8> for &'b isize type Output = <isize as Shl<u8>>::Output;
impl<'a> Shl<u64> for &'a i32 type Output = <i32 as Shl<u64>>::Output;
impl<'a> Shl<i128> for &'a u32 type Output = <u32 as Shl<i128>>::Output;
impl Shl<i64> for i16x4 type Output = i16x4;
impl Shl<u8> for u8x2 type Output = u8x2;
impl<'a> Shl<&'a i64> for i128 type Output = <i128 as Shl<i64>>::Output;
impl<'a> Shl<&'a u8> for u64 type Output = <u64 as Shl<u8>>::Output;
impl<'a> Shl<&'a i8> for i128 type Output = <i128 as Shl<i8>>::Output;
impl<'a> Shl<&'a i8> for usize type Output = <usize as Shl<i8>>::Output;
impl<'a, 'b> Shl<&'a i8> for &'b u128 type Output = <u128 as Shl<i8>>::Output;
impl<'a> Shl<usize> for &'a i32 type Output = <i32 as Shl<usize>>::Output;
impl Shl<i64> for i8x16 type Output = i8x16;
impl<'a> Shl<usize> for &'a isize type Output = <isize as Shl<usize>>::Output;
impl Shl<isize> for u16 type Output = u16;
impl Shl<usize> for i32x4 type Output = i32x4;
impl Shl<u16> for u32x4 type Output = u32x4;
impl Shl<u32> for u8x32 type Output = u8x32;
impl<'a> Shl<&'a i32> for i8 type Output = <i8 as Shl<i32>>::Output;
impl Shl<isize> for i32x16 type Output = i32x16;
impl<'a, 'b> Shl<&'a u16> for &'b u128 type Output = <u128 as Shl<u16>>::Output;
impl<'a, 'b> Shl<&'a u64> for &'b u64 type Output = <u64 as Shl<u64>>::Output;
impl<'a, 'b> Shl<&'a i32> for &'b i8 type Output = <i8 as Shl<i32>>::Output;
impl Shl<u32> for i16x8 type Output = i16x8;
impl Shl<i8> for u128 type Output = u128;
impl Shl<i16> for i32x8 type Output = i32x8;
impl Shl<i8x2> for i8x2 type Output = i8x2;
impl Shl<i64> for i16x8 type Output = i16x8;
impl Shl<u64> for i16x2 type Output = i16x2;
impl Shl<u8> for i8x32 type Output = i8x32;
impl<'a> Shl<&'a usize> for i128 type Output = <i128 as Shl<usize>>::Output;
impl Shl<usize> for i8x16 type Output = i8x16;
impl<'a, 'b> Shl<&'a i64> for &'b i16 type Output = <i16 as Shl<i64>>::Output;
impl Shl<u16> for u8x2 type Output = u8x2;
impl<'a> Shl<&'a u16> for i128 type Output = <i128 as Shl<u16>>::Output;
impl Shl<u64> for i16x16 type Output = i16x16;
impl<'a> Shl<i128> for &'a u64 type Output = <u64 as Shl<i128>>::Output;
impl<'a> Shl<&'a i64> for u8 type Output = <u8 as Shl<i64>>::Output;
impl<'a> Shl<&'a usize> for i16 type Output = <i16 as Shl<usize>>::Output;
impl Shl<u8x32> for u8x32 type Output = u8x32;
impl<'a> Shl<u32> for &'a u16 type Output = <u16 as Shl<u32>>::Output;
impl<'a, 'b> Shl<&'a i64> for &'b i128 type Output = <i128 as Shl<i64>>::Output;
impl<'a> Shl<i64> for &'a isize type Output = <isize as Shl<i64>>::Output;
impl<'a> Shl<&'a i16> for i32 type Output = <i32 as Shl<i16>>::Output;
impl Shl<i8> for usize type Output = usize;
impl Shl<u64> for u32x8 type Output = u32x8;
impl Shl<i16> for u16x4 type Output = u16x4;
impl Shl<i8> for i16 type Output = i16;
impl Shl<i16> for usize type Output = usize;
impl<'a, 'b> Shl<&'a i128> for &'b isize type Output = <isize as Shl<i128>>::Output;
impl Shl<i16> for i16x2 type Output = i16x2;
impl<'a, 'b> Shl<&'a usize> for &'b u64 type Output = <u64 as Shl<usize>>::Output;
impl Shl<i32> for u16x8 type Output = u16x8;
impl Shl<i8> for u32x2 type Output = u32x2;
impl<'a, 'b> Shl<&'a i8> for &'b i128 type Output = <i128 as Shl<i8>>::Output;
impl Shl<u16x4> for u16x4 type Output = u16x4;
impl<'a> Shl<&'a u128> for u8 type Output = <u8 as Shl<u128>>::Output;
impl<'a> Shl<&'a isize> for u8 type Output = <u8 as Shl<isize>>::Output;
impl<'a> Shl<i16> for &'a i64 type Output = <i64 as Shl<i16>>::Output;
impl<'a> Shl<i8> for &'a u32 type Output = <u32 as Shl<i8>>::Output;
impl Shl<isize> for u16x2 type Output = u16x2;
impl Shl<u8> for u64x2 type Output = u64x2;
impl Shl<u16> for i16x2 type Output = i16x2;
impl Shl<i8> for u8x2 type Output = u8x2;
impl<'a> Shl<&'a u128> for u128 type Output = <u128 as Shl<u128>>::Output;
impl Shl<i32> for i64x4 type Output = i64x4;
impl Shl<usize> for i32x16 type Output = i32x16;
impl<'a> Shl<&'a i8> for i32 type Output = <i32 as Shl<i8>>::Output;
impl Shl<u32> for u8 type Output = u8;
impl Shl<isize> for u64x2 type Output = u64x2;
impl<'a> Shl<i32> for &'a i64 type Output = <i64 as Shl<i32>>::Output;
impl Shl<u32> for u128 type Output = u128;
impl Shl<u8> for u16x8 type Output = u16x8;
impl Shl<i16> for i8x4 type Output = i8x4;
impl Shl<i16> for u8x16 type Output = u8x16;
impl<'a> Shl<i32> for &'a i8 type Output = <i8 as Shl<i32>>::Output;
impl<'a> Shl<u8> for &'a u64 type Output = <u64 as Shl<u8>>::Output;
impl Shl<u16> for i16x32 type Output = i16x32;
impl Shl<i32> for u64x2 type Output = u64x2;
impl<'a> Shl<usize> for &'a i16 type Output = <i16 as Shl<usize>>::Output;
impl Shl<i32> for u16x2 type Output = u16x2;
impl Shl<u32> for usize type Output = usize;
impl<'a, 'b> Shl<&'a i8> for &'b u32 type Output = <u32 as Shl<i8>>::Output;
impl Shl<u8> for i16x32 type Output = i16x32;
impl Shl<u32> for i32x16 type Output = i32x16;
impl Shl<u64> for i8 type Output = i8;
impl Shl<u8> for i8x4 type Output = i8x4;
impl<'a> Shl<&'a u16> for i8 type Output = <i8 as Shl<u16>>::Output;
impl<'a> Shl<i32> for &'a usize type Output = <usize as Shl<i32>>::Output;
impl<'a> Shl<u32> for &'a i16 type Output = <i16 as Shl<u32>>::Output;
impl Shl<u32> for i16x32 type Output = i16x32;
impl<'a> Shl<u128> for &'a i8 type Output = <i8 as Shl<u128>>::Output;
impl<'a, 'b> Shl<&'a i64> for &'b i8 type Output = <i8 as Shl<i64>>::Output;
impl<'a, 'b> Shl<&'a i8> for &'b i8 type Output = <i8 as Shl<i8>>::Output;
impl Shl<isize> for i8x8 type Output = i8x8;
impl<'a, 'b> Shl<&'a i64> for &'b u32 type Output = <u32 as Shl<i64>>::Output;
impl Shl<u16> for u8x4 type Output = u8x4;
impl Shl<usize> for i16x16 type Output = i16x16;
impl Shl<u64> for i8x8 type Output = i8x8;
impl<'a> Shl<i64> for &'a u16 type Output = <u16 as Shl<i64>>::Output;
impl Shl<u64> for i64x2 type Output = i64x2;
impl<'a, 'b> Shl<&'a i128> for &'b u8 type Output = <u8 as Shl<i128>>::Output;
impl Shl<u16> for u64 type Output = u64;
impl<'a> Shl<u32> for &'a isize type Output = <isize as Shl<u32>>::Output;
impl<'a> Shl<&'a u8> for i128 type Output = <i128 as Shl<u8>>::Output;
impl Shl<i16x16> for i16x16 type Output = i16x16;
impl Shl<i32> for usize type Output = usize;
impl Shl<i16> for isize type Output = isize;
impl Shl<u8x2> for u8x2 type Output = u8x2;
impl Shl<isize> for i16x4 type Output = i16x4;
impl<'a> Shl<&'a u128> for i32 type Output = <i32 as Shl<u128>>::Output;
impl<'a> Shl<isize> for &'a usize type Output = <usize as Shl<isize>>::Output;
impl Shl<i128> for i32 type Output = i32;
impl<'a> Shl<&'a u32> for isize type Output = <isize as Shl<u32>>::Output;
impl Shl<i64> for i8x4 type Output = i8x4;
impl Shl<usize> for i8 type Output = i8;
impl Shl<usize> for Wrapping<u32> type Output = Wrapping<u32>;
impl<'a> Shl<u64> for &'a isize type Output = <isize as Shl<u64>>::Output;
impl Shl<i64> for u32x4 type Output = u32x4;
impl Shl<u32> for i8x2 type Output = i8x2;
impl<'a> Shl<u128> for &'a u16 type Output = <u16 as Shl<u128>>::Output;
impl<'a, 'b> Shl<&'a i64> for &'b isize type Output = <isize as Shl<i64>>::Output;
impl<'a, 'b> Shl<&'a u128> for &'b isize type Output = <isize as Shl<u128>>::Output;
impl Shl<isize> for i128 type Output = i128;
impl Shl<i8> for i16x2 type Output = i16x2;
impl<'a> Shl<usize> for &'a u32 type Output = <u32 as Shl<usize>>::Output;
impl<'a> Shl<&'a i16> for i8 type Output = <i8 as Shl<i16>>::Output;
impl<'a> Shl<u32> for &'a usize type Output = <usize as Shl<u32>>::Output;
impl Shl<i8> for i32x2 type Output = i32x2;
impl Shl<usize> for isize type Output = isize;
impl<'a> Shl<&'a i16> for u16 type Output = <u16 as Shl<i16>>::Output;
impl<'a, 'b> Shl<&'a i8> for &'b i64 type Output = <i64 as Shl<i8>>::Output;
impl Shl<usize> for i64x8 type Output = i64x8;
impl Shl<i64> for isize type Output = isize;
impl<'a> Shl<u64> for &'a i8 type Output = <i8 as Shl<u64>>::Output;
impl Shl<usize> for i64 type Output = i64;
impl Shl<i8> for i128 type Output = i128;
impl Shl<usize> for i64x2 type Output = i64x2;
impl<'a, 'b> Shl<&'a usize> for &'b u32 type Output = <u32 as Shl<usize>>::Output;
impl Shl<i8> for u32x4 type Output = u32x4;
impl Shl<u128> for u8 type Output = u8;
impl Shl<i8> for i16x32 type Output = i16x32;
impl Shl<u16> for u16 type Output = u16;
impl<'a> Shl<u128> for &'a u64 type Output = <u64 as Shl<u128>>::Output;
impl<'a, 'b> Shl<&'a isize> for &'b i8 type Output = <i8 as Shl<isize>>::Output;
impl<'a, 'b> Shl<&'a i16> for &'b u128 type Output = <u128 as Shl<i16>>::Output;
impl Shl<usize> for i16x32 type Output = i16x32;
impl<'a> Shl<&'a i32> for u8 type Output = <u8 as Shl<i32>>::Output;
impl Shl<u64> for usize type Output = usize;
impl Shl<usize> for Wrapping<i8> type Output = Wrapping<i8>;
impl Shl<i64> for u16x2 type Output = u16x2;
impl<'a> Shl<&'a u16> for usize type Output = <usize as Shl<u16>>::Output;
impl Shl<u64> for u8 type Output = u8;
impl<'a> Shl<&'a u32> for u32 type Output = <u32 as Shl<u32>>::Output;
impl<'a, 'b> Shl<&'a u8> for &'b i64 type Output = <i64 as Shl<u8>>::Output;
impl Shl<i32> for u32 type Output = u32;
impl<'a, 'b> Shl<&'a i8> for &'b u16 type Output = <u16 as Shl<i8>>::Output;
impl Shl<u8> for i64x4 type Output = i64x4;
impl<'a, 'b> Shl<&'a u16> for &'b u8 type Output = <u8 as Shl<u16>>::Output;
impl<'a> Shl<&'a u64> for u8 type Output = <u8 as Shl<u64>>::Output;
impl<'a, 'b> Shl<&'a u32> for &'b i8 type Output = <i8 as Shl<u32>>::Output;
impl Shl<u128> for u32 type Output = u32;
impl Shl<u8> for u32 type Output = u32;
impl<'a> Shl<u16> for &'a i32 type Output = <i32 as Shl<u16>>::Output;
impl Shl<u32x2> for u32x2 type Output = u32x2;
impl Shl<i16> for u64x2 type Output = u64x2;
impl Shl<usize> for u64x4 type Output = u64x4;
impl Shl<u32> for i8x8 type Output = i8x8;
impl Shl<u64> for u8x32 type Output = u8x32;
impl<'a> Shl<u16> for &'a usize type Output = <usize as Shl<u16>>::Output;
impl<'a> Shl<i128> for &'a u128 type Output = <u128 as Shl<i128>>::Output;
impl Shl<isize> for u16x4 type Output = u16x4;
impl Shl<u32> for i32x4 type Output = i32x4;
impl<'a> Shl<i8> for &'a u8 type Output = <u8 as Shl<i8>>::Output;
impl<'a, 'b> Shl<&'a u8> for &'b u16 type Output = <u16 as Shl<u8>>::Output;
impl Shl<i64> for u16x8 type Output = u16x8;
impl Shl<u8> for i8x16 type Output = i8x16;
impl Shl<u64> for u8x16 type Output = u8x16;
impl Shl<i64> for u128 type Output = u128;
impl<'a> Shl<&'a u64> for i8 type Output = <i8 as Shl<u64>>::Output;
impl<'a> Shl<&'a u16> for u16 type Output = <u16 as Shl<u16>>::Output;
impl<'a> Shl<&'a u16> for isize type Output = <isize as Shl<u16>>::Output;
impl Shl<u8x4> for u8x4 type Output = u8x4;
impl Shl<isize> for u64x4 type Output = u64x4;
impl Shl<i16> for i32x2 type Output = i32x2;
impl Shl<i8> for u64 type Output = u64;
impl Shl<u128> for i64 type Output = i64;
impl<'a> Shl<&'a i8> for u32 type Output = <u32 as Shl<i8>>::Output;
impl<'a, 'b> Shl<&'a u128> for &'b i32 type Output = <i32 as Shl<u128>>::Output;
impl<'a, 'b> Shl<&'a i16> for &'b i16 type Output = <i16 as Shl<i16>>::Output;
impl<'a> Shl<&'a u8> for usize type Output = <usize as Shl<u8>>::Output;
impl<'a, 'b> Shl<&'a u32> for &'b u8 type Output = <u8 as Shl<u32>>::Output;
impl Shl<u16> for u32x8 type Output = u32x8;
impl<'a, 'b> Shl<&'a isize> for &'b u64 type Output = <u64 as Shl<isize>>::Output;
impl<'a> Shl<&'a u16> for i32 type Output = <i32 as Shl<u16>>::Output;
impl<'a, 'b> Shl<&'a u32> for &'b i32 type Output = <i32 as Shl<u32>>::Output;
impl Shl<isize> for i8x4 type Output = i8x4;
impl Shl<u8> for i16 type Output = i16;
impl<'a> Shl<i8> for &'a i128 type Output = <i128 as Shl<i8>>::Output;
impl<'a> Shl<&'a i32> for i64 type Output = <i64 as Shl<i32>>::Output;
impl Shl<u16> for i64x2 type Output = i64x2;
impl<'a> Shl<i16> for &'a isize type Output = <isize as Shl<i16>>::Output;
impl<'a, 'b> Shl<&'a i32> for &'b u16 type Output = <u16 as Shl<i32>>::Output;
impl Shl<usize> for Wrapping<u8> type Output = Wrapping<u8>;
impl<'a> Shl<u8> for &'a u16 type Output = <u16 as Shl<u8>>::Output;
impl<'a> Shl<u128> for &'a u8 type Output = <u8 as Shl<u128>>::Output;
impl<'a> Shl<&'a i128> for u32 type Output = <u32 as Shl<i128>>::Output;
impl Shl<i8> for i64x4 type Output = i64x4;
impl Shl<i8> for u8x32 type Output = u8x32;
impl<'a> Shl<i64> for &'a i16 type Output = <i16 as Shl<i64>>::Output;
impl<'a> Shl<u64> for &'a i64 type Output = <i64 as Shl<u64>>::Output;
impl<'a> Shl<u16> for &'a i8 type Output = <i8 as Shl<u16>>::Output;
impl Shl<i64> for i8 type Output = i8;
impl<'a, 'b> Shl<&'a u8> for &'b i32 type Output = <i32 as Shl<u8>>::Output;
impl Shl<i16> for i8 type Output = i8;
impl Shl<u16> for u32x16 type Output = u32x16;
impl<'a, 'b> Shl<&'a isize> for &'b i128 type Output = <i128 as Shl<isize>>::Output;
impl Shl<u8> for u64x4 type Output = u64x4;
impl Shl<isize> for u32x16 type Output = u32x16;
impl Shl<i32> for u32x2 type Output = u32x2;
impl<'a> Shl<isize> for &'a u128 type Output = <u128 as Shl<isize>>::Output;
impl<'a> Shl<i8> for &'a i8 type Output = <i8 as Shl<i8>>::Output;
impl<'a, 'b> Shl<&'a i16> for &'b i128 type Output = <i128 as Shl<i16>>::Output;
impl Shl<u64> for i16x32 type Output = i16x32;
impl<'a> Shl<i16> for &'a u128 type Output = <u128 as Shl<i16>>::Output;
impl<'a> Shl<&'a u8> for isize type Output = <isize as Shl<u8>>::Output;
impl Shl<u64> for u16x16 type Output = u16x16;
impl<'a> Shl<i128> for &'a i128 type Output = <i128 as Shl<i128>>::Output;
impl<'a, 'b> Shl<&'a u64> for &'b isize type Output = <isize as Shl<u64>>::Output;
impl Shl<u16> for u64x2 type Output = u64x2;
impl Shl<i8> for i32x8 type Output = i32x8;
impl Shl<u32> for u64x2 type Output = u64x2;
impl Shl<i16> for i8x16 type Output = i8x16;
impl Shl<i8> for i8x4 type Output = i8x4;
impl<'a, 'b> Shl<&'a i16> for &'b u32 type Output = <u32 as Shl<i16>>::Output;
impl<'a> Shl<&'a u32> for i16 type Output = <i16 as Shl<u32>>::Output;
impl<'a> Shl<&'a i64> for usize type Output = <usize as Shl<i64>>::Output;
impl Shl<i32> for u8x64 type Output = u8x64;
impl Shl<i128> for usize type Output = usize;
impl Shl<usize> for i8x64 type Output = i8x64;
impl<'a, 'b> Shl<&'a i32> for &'b u32 type Output = <u32 as Shl<i32>>::Output;
impl Shl<u32> for u8x16 type Output = u8x16;
impl Shl<i32> for u64x8 type Output = u64x8;
impl Shl<u16> for u16x32 type Output = u16x32;
impl Shl<i8> for u32x8 type Output = u32x8;
impl<'a> Shl<i32> for &'a u64 type Output = <u64 as Shl<i32>>::Output;
impl Shl<i8> for u16x4 type Output = u16x4;
impl<'a> Shl<&'a isize> for i128 type Output = <i128 as Shl<isize>>::Output;
impl<'a> Shl<u64> for &'a usize type Output = <usize as Shl<u64>>::Output;
impl Shl<i16x2> for i16x2 type Output = i16x2;
impl Shl<i64> for u8 type Output = u8;
impl Shl<u16> for usize type Output = usize;
impl Shl<i8> for u8x64 type Output = u8x64;
impl Shl<u32> for u32x2 type Output = u32x2;
impl Shl<usize> for i16x2 type Output = i16x2;
impl Shl<i64> for u64 type Output = u64;
impl Shl<u8> for i16x2 type Output = i16x2;
impl Shl<u16> for u8x8 type Output = u8x8;
impl<'a> Shl<&'a isize> for u128 type Output = <u128 as Shl<isize>>::Output;
impl Shl<usize> for i32x2 type Output = i32x2;
impl Shl<i64x8> for i64x8 type Output = i64x8;
impl Shl<u8> for u16 type Output = u16;
impl Shl<u8> for u8 type Output = u8;
impl<'a, 'b> Shl<&'a u8> for &'b i8 type Output = <i8 as Shl<u8>>::Output;
impl Shl<i8> for isize type Output = isize;
impl Shl<usize> for i16 type Output = i16;
impl Shl<u16> for i8 type Output = i8;
impl Shl<u16> for u64x4 type Output = u64x4;
impl Shl<u32> for i8x16 type Output = i8x16;
impl Shl<i16> for u64x8 type Output = u64x8;
impl<'a, 'b> Shl<&'a u16> for &'b u64 type Output = <u64 as Shl<u16>>::Output;
impl<'a> Shl<usize> for &'a i64 type Output = <i64 as Shl<usize>>::Output;
impl Shl<isize> for i32x4 type Output = i32x4;
impl Shl<i16> for u8x2 type Output = u8x2;
impl Shl<usize> for Wrapping<u64> type Output = Wrapping<u64>;
impl Shl<usize> for u128 type Output = u128;
impl Shl<i64> for i32x2 type Output = i32x2;
impl<'a> Shl<&'a i16> for u64 type Output = <u64 as Shl<i16>>::Output;
impl<'a> Shl<&'a u8> for u16 type Output = <u16 as Shl<u8>>::Output;
impl Shl<usize> for i8x4 type Output = i8x4;
impl Shl<i64> for u16x16 type Output = u16x16;
impl Shl<i8> for u8x16 type Output = u8x16;
impl<'a, 'b> Shl<&'a isize> for &'b i16 type Output = <i16 as Shl<isize>>::Output;
impl<'a> Shl<i8> for &'a i32 type Output = <i32 as Shl<i8>>::Output;
impl Shl<u8> for i32x4 type Output = i32x4;
impl<'a> Shl<u8> for &'a u32 type Output = <u32 as Shl<u8>>::Output;
impl<'a> Shl<u64> for &'a u8 type Output = <u8 as Shl<u64>>::Output;
impl<'a> Shl<&'a u8> for i32 type Output = <i32 as Shl<u8>>::Output;
impl Shl<u64> for i64x4 type Output = i64x4;
impl<'a> Shl<i16> for &'a i8 type Output = <i8 as Shl<i16>>::Output;
impl Shl<u16> for i32 type Output = i32;
impl Shl<u64> for i64x8 type Output = i64x8;
impl<'a, 'b> Shl<&'a u64> for &'b i8 type Output = <i8 as Shl<u64>>::Output;
impl Shl<i64> for i8x2 type Output = i8x2;
impl Shl<u16> for i16x8 type Output = i16x8;
impl<'a, 'b> Shl<&'a u32> for &'b i16 type Output = <i16 as Shl<u32>>::Output;
impl<'a> Shl<&'a u64> for isize type Output = <isize as Shl<u64>>::Output;
impl<'a> Shl<i16> for &'a i32 type Output = <i32 as Shl<i16>>::Output;
impl Shl<u16> for i16x16 type Output = i16x16;
impl<'a> Shl<isize> for &'a u32 type Output = <u32 as Shl<isize>>::Output;
impl Shl<u64> for u64x4 type Output = u64x4;
impl Shl<u8> for u8x16 type Output = u8x16;
impl Shl<u32> for u64x8 type Output = u64x8;
impl Shl<i16> for i16x16 type Output = i16x16;
impl Shl<isize> for u32x8 type Output = u32x8;
impl<'a> Shl<i16> for &'a i16 type Output = <i16 as Shl<i16>>::Output;
impl Shl<i8> for u32x16 type Output = u32x16;
impl Shl<i8> for i16x16 type Output = i16x16;
impl Shl<u32> for u16x2 type Output = u16x2;
impl<'a, 'b> Shl<&'a u32> for &'b usize type Output = <usize as Shl<u32>>::Output;
impl Shl<usize> for Wrapping<i64> type Output = Wrapping<i64>;
impl Shl<i64> for i32x8 type Output = i32x8;
impl<'a, 'b> Shl<&'a u32> for &'b i64 type Output = <i64 as Shl<u32>>::Output;
impl<'a> Shl<i8> for &'a i16 type Output = <i16 as Shl<i8>>::Output;
impl Shl<i32> for u16x32 type Output = u16x32;
impl Shl<i32> for u8x32 type Output = u8x32;
impl Shl<usize> for u8x32 type Output = u8x32;
impl Shl<isize> for i32x8 type Output = i32x8;
impl Shl<i64> for u32x8 type Output = u32x8;
impl<'a> Shl<&'a u128> for i128 type Output = <i128 as Shl<u128>>::Output;
impl Shl<u8> for i64x8 type Output = i64x8;
impl Shl<usize> for u64x8 type Output = u64x8;
impl Shl<i8> for i16x4 type Output = i16x4;
impl Shl<u16> for i8x8 type Output = i8x8;
impl Shl<u8> for u128 type Output = u128;
impl<'a> Shl<i8> for &'a u16 type Output = <u16 as Shl<i8>>::Output;
impl<'a> Shl<&'a u64> for usize type Output = <usize as Shl<u64>>::Output;
impl<'a, 'b> Shl<&'a i16> for &'b isize type Output = <isize as Shl<i16>>::Output;
impl<'a> Shl<i16> for &'a u8 type Output = <u8 as Shl<i16>>::Output;
impl<'a> Shl<u16> for &'a i128 type Output = <i128 as Shl<u16>>::Output;
impl Shl<u8> for u8x32 type Output = u8x32;
impl<'a> Shl<u16> for &'a i16 type Output = <i16 as Shl<u16>>::Output;
impl<'a> Shl<u32> for &'a i32 type Output = <i32 as Shl<u32>>::Output;
impl Shl<u16> for u16x2 type Output = u16x2;
impl Shl<i32> for i16x16 type Output = i16x16;
impl Shl<u16x8> for u16x8 type Output = u16x8;
impl<'a> Shl<isize> for &'a i16 type Output = <i16 as Shl<isize>>::Output;
impl Shl<u8> for u64x8 type Output = u64x8;
impl<'a> Shl<u64> for &'a i128 type Output = <i128 as Shl<u64>>::Output;
impl Shl<u8> for u16x32 type Output = u16x32;
impl<'a> Shl<u16> for &'a u64 type Output = <u64 as Shl<u16>>::Output;
impl Shl<i16> for u64x4 type Output = u64x4;
impl Shl<isize> for i64 type Output = i64;
impl Shl<i64> for u8x8 type Output = u8x8;
impl Shl<i8> for i32x4 type Output = i32x4;
impl<'a> Shl<&'a usize> for u32 type Output = <u32 as Shl<usize>>::Output;
impl Shl<usize> for u16x16 type Output = u16x16;
impl Shl<i32> for i16x4 type Output = i16x4;
impl<'a, 'b> Shl<&'a u128> for &'b i64 type Output = <i64 as Shl<u128>>::Output;
impl Shl<u128> for u128 type Output = u128;
impl<'a, 'b> Shl<&'a u128> for &'b i128 type Output = <i128 as Shl<u128>>::Output;
impl Shl<u16> for u8 type Output = u8;
impl Shl<u32x16> for u32x16 type Output = u32x16;
impl<'a> Shl<&'a i128> for i128 type Output = <i128 as Shl<i128>>::Output;
impl Shl<u8> for i64x2 type Output = i64x2;
impl<'a, 'b> Shl<&'a i16> for &'b i8 type Output = <i8 as Shl<i16>>::Output;
impl Shl<usize> for u64x2 type Output = u64x2;
impl<'a> Shl<isize> for &'a u8 type Output = <u8 as Shl<isize>>::Output;
impl<'a> Shl<&'a i32> for u128 type Output = <u128 as Shl<i32>>::Output;
impl Shl<i16> for u8 type Output = u8;
impl Shl<u32> for i16x2 type Output = i16x2;
impl Shl<usize> for u32 type Output = u32;
impl Shl<usize> for u32x2 type Output = u32x2;
impl Shl<usize> for u32x4 type Output = u32x4;
impl<'a, 'b> Shl<&'a i16> for &'b i32 type Output = <i32 as Shl<i16>>::Output;
impl<'a> Shl<u8> for &'a u8 type Output = <u8 as Shl<u8>>::Output;
impl Shl<u16> for i64 type Output = i64;
impl Shl<usize> for i32x8 type Output = i32x8;
impl Shl<i32> for i16x32 type Output = i16x32;
impl Shl<usize> for i16x8 type Output = i16x8;
impl Shl<i8> for u32 type Output = u32;
impl Shl<i8> for u64x2 type Output = u64x2;
impl<'a> Shl<&'a usize> for u16 type Output = <u16 as Shl<usize>>::Output;
impl<'a> Shl<u8> for &'a i8 type Output = <i8 as Shl<u8>>::Output;
impl Shl<i128> for u8 type Output = u8;
impl<'a> Shl<i128> for &'a i32 type Output = <i32 as Shl<i128>>::Output;
impl Shl<i8> for i32x16 type Output = i32x16;
impl Shl<i128> for isize type Output = isize;
impl Shl<i16> for i8x8 type Output = i8x8;
impl Shl<u16> for i8x2 type Output = i8x2;
impl Shl<i64> for i8x64 type Output = i8x64;
impl<'a> Shl<&'a u64> for i128 type Output = <i128 as Shl<u64>>::Output;
impl<'a> Shl<&'a i128> for u128 type Output = <u128 as Shl<i128>>::Output;
impl<'a, 'b> Shl<&'a i8> for &'b usize type Output = <usize as Shl<i8>>::Output;
impl Shl<i32> for u16x16 type Output = u16x16;
impl<'a> Shl<&'a u64> for i16 type Output = <i16 as Shl<u64>>::Output;
impl<'a, 'b> Shl<&'a isize> for &'b u8 type Output = <u8 as Shl<isize>>::Output;
impl Shl<i16> for i64 type Output = i64;
impl<'a> Shl<&'a isize> for i64 type Output = <i64 as Shl<isize>>::Output;
impl Shl<u64> for u64x2 type Output = u64x2;
impl Shl<i64> for i16x2 type Output = i16x2;
impl Shl<u32> for u8x64 type Output = u8x64;
impl Shl<isize> for i64x2 type Output = i64x2;
impl Shl<i32> for u8 type Output = u8;
impl Shl<u8x64> for u8x64 type Output = u8x64;
impl<'a> Shl<usize> for &'a u64 type Output = <u64 as Shl<usize>>::Output;
impl Shl<u32> for u16x4 type Output = u16x4;
impl<'a, 'b> Shl<&'a i64> for &'b usize type Output = <usize as Shl<i64>>::Output;
impl<'a> Shl<u16> for &'a u8 type Output = <u8 as Shl<u16>>::Output;
impl Shl<i64> for i16x32 type Output = i16x32;
impl<'a> Shl<u128> for &'a i64 type Output = <i64 as Shl<u128>>::Output;
impl Shl<i32> for i8 type Output = i8;
impl Shl<usize> for Wrapping<i32> type Output = Wrapping<i32>;
impl Shl<u16> for i8x16 type Output = i8x16;
impl<'a, 'b> Shl<&'a u128> for &'b i8 type Output = <i8 as Shl<u128>>::Output;
impl Shl<u16> for u8x32 type Output = u8x32;
impl Shl<i8x32> for i8x32 type Output = i8x32;
impl<'a> Shl<u16> for &'a u32 type Output = <u32 as Shl<u16>>::Output;
impl Shl<u16> for u32 type Output = u32;
impl Shl<i8x64> for i8x64 type Output = i8x64;
impl Shl<isize> for i64x8 type Output = i64x8;
impl<'a> Shl<&'a i8> for i8 type Output = <i8 as Shl<i8>>::Output;
impl Shl<u16> for i64x4 type Output = i64x4;
impl Shl<i64> for u64x4 type Output = u64x4;
impl<'a> Shl<&'a i32> for u64 type Output = <u64 as Shl<i32>>::Output;
impl Shl<u64> for u16x32 type Output = u16x32;
impl<'a> Shl<i64> for &'a i8 type Output = <i8 as Shl<i64>>::Output;
impl Shl<u8> for isize type Output = isize;
impl<'a, 'b> Shl<&'a u8> for &'b i16 type Output = <i16 as Shl<u8>>::Output;
impl Shl<i16> for i128 type Output = i128;
impl Shl<u64> for u16 type Output = u16;
impl<'a> Shl<u16> for &'a u16 type Output = <u16 as Shl<u16>>::Output;
impl Shl<i32> for u64x4 type Output = u64x4;
impl Shl<i64> for u8x64 type Output = u8x64;
impl Shl<i32> for u32x8 type Output = u32x8;
impl Shl<i32> for i32x4 type Output = i32x4;
impl Shl<usize> for u8x8 type Output = u8x8;
impl Shl<u16> for u8x16 type Output = u8x16;
impl Shl<isize> for u32 type Output = u32;
impl Shl<i8> for u16x16 type Output = u16x16;
impl<'a> Shl<u32> for &'a i128 type Output = <i128 as Shl<u32>>::Output;
impl Shl<u32> for isize type Output = isize;
impl<'a, 'b> Shl<&'a i128> for &'b u64 type Output = <u64 as Shl<i128>>::Output;
impl<'a> Shl<&'a u64> for u64 type Output = <u64 as Shl<u64>>::Output;
impl Shl<u32> for u16x8 type Output = u16x8;
impl Shl<u64> for u16x8 type Output = u16x8;
impl<'a, 'b> Shl<&'a i128> for &'b i16 type Output = <i16 as Shl<i128>>::Output;
impl<'a> Shl<&'a i128> for u8 type Output = <u8 as Shl<i128>>::Output;
impl Shl<usize> for u16x8 type Output = u16x8;
impl Shl<i32> for i64x8 type Output = i64x8;
impl<'a> Shl<&'a u128> for isize type Output = <isize as Shl<u128>>::Output;
impl Shl<i32> for u16x4 type Output = u16x4;
impl<'a, 'b> Shl<&'a i128> for &'b u128 type Output = <u128 as Shl<i128>>::Output;
impl<'a> Shl<&'a i128> for u16 type Output = <u16 as Shl<i128>>::Output;
impl<'a, 'b> Shl<&'a u64> for &'b u32 type Output = <u32 as Shl<u64>>::Output;
impl Shl<u64> for i32x8 type Output = i32x8;
impl Shl<i128> for i16 type Output = i16;
impl Shl<i8> for i64x8 type Output = i64x8;
impl<'a> Shl<&'a u16> for u32 type Output = <u32 as Shl<u16>>::Output;
impl Shl<u32> for u16x32 type Output = u16x32;
impl<'a> Shl<u128> for &'a i16 type Output = <i16 as Shl<u128>>::Output;
impl<'a> Shl<i16> for &'a usize type Output = <usize as Shl<i16>>::Output;
impl<'a, 'b> Shl<&'a usize> for &'b i64 type Output = <i64 as Shl<usize>>::Output;
impl<'a, 'b> Shl<&'a u64> for &'b u8 type Output = <u8 as Shl<u64>>::Output;
impl<'a, 'b> Shl<&'a i8> for &'b i32 type Output = <i32 as Shl<i8>>::Output;
impl Shl<i32> for u32x16 type Output = u32x16;
impl<'a, 'b> Shl<&'a u128> for &'b u16 type Output = <u16 as Shl<u128>>::Output;
impl Shl<isize> for u8x16 type Output = u8x16;
impl Shl<usize> for i16x4 type Output = i16x4;
impl Shl<u8> for i16x8 type Output = i16x8;
impl Shl<u16> for u8x64 type Output = u8x64;
impl<'a> Shl<u64> for &'a i16 type Output = <i16 as Shl<u64>>::Output;
impl Shl<isize> for u128 type Output = u128;
impl<'a> Shl<&'a i64> for u32 type Output = <u32 as Shl<i64>>::Output;
impl<'a, 'b> Shl<&'a u64> for &'b usize type Output = <usize as Shl<u64>>::Output;
impl<'a> Shl<&'a u16> for i16 type Output = <i16 as Shl<u16>>::Output;
impl<'a> Shl<&'a isize> for usize type Output = <usize as Shl<isize>>::Output;
impl Shl<u64> for i128 type Output = i128;
impl<'a> Shl<&'a usize> for u8 type Output = <u8 as Shl<usize>>::Output;
impl Shl<i8> for i64 type Output = i64;
impl Shl<isize> for u16x8 type Output = u16x8;
impl<'a> Shl<&'a i8> for i64 type Output = <i64 as Shl<i8>>::Output;
impl Shl<isize> for i32 type Output = i32;
impl<'a> Shl<&'a u32> for usize type Output = <usize as Shl<u32>>::Output;
impl Shl<u8> for i16x16 type Output = i16x16;
impl<'a> Shl<u8> for &'a u128 type Output = <u128 as Shl<u8>>::Output;
impl<'a, 'b> Shl<&'a i16> for &'b u8 type Output = <u8 as Shl<i16>>::Output;
impl Shl<u64> for u16x4 type Output = u16x4;
impl<'a> Shl<&'a u128> for usize type Output = <usize as Shl<u128>>::Output;
impl Shl<isize> for i16x32 type Output = i16x32;
impl Shl<i8> for i64x2 type Output = i64x2;
impl<'a, 'b> Shl<&'a u64> for &'b i128 type Output = <i128 as Shl<u64>>::Output;
impl<'a, 'b> Shl<&'a u64> for &'b u128 type Output = <u128 as Shl<u64>>::Output;
impl Shl<u8> for u16x2 type Output = u16x2;
impl Shl<u16> for i32x8 type Output = i32x8;
impl Shl<i8> for i8x8 type Output = i8x8;
impl<'a, 'b> Shl<&'a i16> for &'b u64 type Output = <u64 as Shl<i16>>::Output;
impl Shl<i64> for u32x2 type Output = u32x2;
impl Shl<isize> for i8x32 type Output = i8x32;
impl Shl<i32> for i8x64 type Output = i8x64;
impl<'a, 'b> Shl<&'a usize> for &'b isize type Output = <isize as Shl<usize>>::Output;
impl<'a> Shl<&'a u64> for u128 type Output = <u128 as Shl<u64>>::Output;
impl Shl<i64> for i32x4 type Output = i32x4;
impl Shl<u32x4> for u32x4 type Output = u32x4;
impl Shl<i64> for u16 type Output = u16;
impl<'a> Shl<&'a i32> for u16 type Output = <u16 as Shl<i32>>::Output;
impl<'a> Shl<u32> for &'a u128 type Output = <u128 as Shl<u32>>::Output;
impl Shl<i16> for u8x8 type Output = u8x8;
impl<'a> Shl<usize> for &'a u16 type Output = <u16 as Shl<usize>>::Output;
impl<'a> Shl<&'a i64> for i8 type Output = <i8 as Shl<i64>>::Output;
impl<'a, 'b> Shl<&'a u16> for &'b i32 type Output = <i32 as Shl<u16>>::Output;
impl Shl<i128> for u64 type Output = u64;
impl Shl<i8> for i8x2 type Output = i8x2;
impl Shl<u32> for u8x4 type Output = u8x4;
impl Shl<u32> for i8x64 type Output = i8x64;
impl<'a, 'b> Shl<&'a i64> for &'b i64 type Output = <i64 as Shl<i64>>::Output;
impl Shl<i128> for i64 type Output = i64;
impl Shl<i64> for u64x8 type Output = u64x8;
impl Shl<u16> for u16x4 type Output = u16x4;
impl Shl<i32x4> for i32x4 type Output = i32x4;
impl<'a, 'b> Shl<&'a usize> for &'b u8 type Output = <u8 as Shl<usize>>::Output;
impl Shl<i16x8> for i16x8 type Output = i16x8;
impl Shl<i128> for u16 type Output = u16;
impl Shl<i8> for i8 type Output = i8;
impl Shl<isize> for i64x4 type Output = i64x4;
impl<'a, 'b> Shl<&'a u8> for &'b i128 type Output = <i128 as Shl<u8>>::Output;
impl Shl<i16> for u8x32 type Output = u8x32;
impl Shl<u8> for u8x64 type Output = u8x64;
impl Shl<i8> for u8 type Output = u8;
impl<'a> Shl<i8> for &'a isize type Output = <isize as Shl<i8>>::Output;
impl<'a> Shl<u8> for &'a i16 type Output = <i16 as Shl<u8>>::Output;
impl<'a> Shl<i128> for &'a usize type Output = <usize as Shl<i128>>::Output;
impl<'a, 'b> Shl<&'a u8> for &'b usize type Output = <usize as Shl<u8>>::Output;
impl<'a> Shl<&'a u16> for u128 type Output = <u128 as Shl<u16>>::Output;
impl<'a> Shl<&'a i16> for i64 type Output = <i64 as Shl<i16>>::Output;
impl<'a, 'b> Shl<&'a i128> for &'b i128 type Output = <i128 as Shl<i128>>::Output;
impl Shl<isize> for usize type Output = usize;
impl Shl<i8> for u16x8 type Output = u16x8;
impl Shl<u32> for i16 type Output = i16;
impl<'a> Shl<&'a usize> for usize type Output = <usize as Shl<usize>>::Output;
impl Shl<i32x8> for i32x8 type Output = i32x8;
impl Shl<i32> for i8x4 type Output = i8x4;
impl Shl<u128> for i8 type Output = i8;
impl Shl<i8> for i8x64 type Output = i8x64;
impl Shl<isize> for u8x4 type Output = u8x4;
impl<'a> Shl<&'a u16> for i64 type Output = <i64 as Shl<u16>>::Output;
impl Shl<usize> for u8x2 type Output = u8x2;
impl<'a> Shl<i32> for &'a i32 type Output = <i32 as Shl<i32>>::Output;
impl<'a, 'b> Shl<&'a u32> for &'b u16 type Output = <u16 as Shl<u32>>::Output;
impl<'a, 'b> Shl<&'a u16> for &'b i8 type Output = <i8 as Shl<u16>>::Output;
impl Shl<usize> for u8 type Output = u8;
impl Shl<u8> for u32x2 type Output = u32x2;
impl<'a> Shl<isize> for &'a i32 type Output = <i32 as Shl<isize>>::Output;
impl Shl<i8> for u64x4 type Output = u64x4;
impl<'a> Shl<&'a usize> for u128 type Output = <u128 as Shl<usize>>::Output;
impl<'a> Shl<u32> for &'a u64 type Output = <u64 as Shl<u32>>::Output;
impl Shl<u16> for i128 type Output = i128;
impl<'a, 'b> Shl<&'a usize> for &'b u128 type Output = <u128 as Shl<usize>>::Output;
impl Shl<usize> for u16x32 type Output = u16x32;
impl Shl<i64> for u16x4 type Output = u16x4;
impl<'a> Shl<i8> for &'a usize type Output = <usize as Shl<i8>>::Output;
impl Shl<u8> for i32x8 type Output = i32x8;
impl<'a> Shl<&'a u16> for u64 type Output = <u64 as Shl<u16>>::Output;
impl<'a> Shl<&'a u32> for i32 type Output = <i32 as Shl<u32>>::Output;
impl Shl<u64> for u32x16 type Output = u32x16;
impl Shl<i32> for i64 type Output = i64;
impl Shl<u8x8> for u8x8 type Output = u8x8;
impl Shl<u32> for u64 type Output = u64;
impl<'a> Shl<u8> for &'a i32 type Output = <i32 as Shl<u8>>::Output;
impl Shl<i16> for u128 type Output = u128;
impl Shl<u32> for i64x2 type Output = i64x2;
impl<'a> Shl<u8> for &'a i128 type Output = <i128 as Shl<u8>>::Output;
impl Shl<i16> for u32x4 type Output = u32x4;
impl Shl<u128> for usize type Output = usize;
impl<'a> Shl<u128> for &'a i32 type Output = <i32 as Shl<u128>>::Output;
impl Shl<i16> for u8x64 type Output = u8x64;
impl<'a> Shl<u32> for &'a i8 type Output = <i8 as Shl<u32>>::Output;
impl<'a> Shl<&'a u64> for u16 type Output = <u16 as Shl<u64>>::Output;
impl<'a, 'b> Shl<&'a u128> for &'b u64 type Output = <u64 as Shl<u128>>::Output;
impl<'a> Shl<&'a u8> for i8 type Output = <i8 as Shl<u8>>::Output;
impl Shl<u8> for u16x16 type Output = u16x16;
impl<'a> Shl<i64> for &'a i32 type Output = <i32 as Shl<i64>>::Output;
impl<'a> Shl<&'a i32> for usize type Output = <usize as Shl<i32>>::Output;
impl Shl<u32> for u8x8 type Output = u8x8;
impl Shl<u32> for u32x8 type Output = u32x8;
impl<'a, 'b> Shl<&'a i128> for &'b u32 type Output = <u32 as Shl<i128>>::Output;
impl Shl<u32> for i16x4 type Output = i16x4;
impl Shl<isize> for u32x2 type Output = u32x2;
impl Shl<usize> for Wrapping<i16> type Output = Wrapping<i16>;
impl<'a> Shl<&'a i8> for isize type Output = <isize as Shl<i8>>::Output;
impl<'a> Shl<&'a i128> for i64 type Output = <i64 as Shl<i128>>::Output;
impl Shl<i32> for i8x16 type Output = i8x16;
impl Shl<i32> for i8x32 type Output = i8x32;
impl<'a> Shl<i64> for &'a i64 type Output = <i64 as Shl<i64>>::Output;
impl Shl<i64> for u32x16 type Output = u32x16;
impl Shl<usize> for u32x16 type Output = u32x16;
impl<'a> Shl<&'a isize> for u16 type Output = <u16 as Shl<isize>>::Output;
impl<'a> Shl<&'a i128> for usize type Output = <usize as Shl<i128>>::Output;
impl<'a, 'b> Shl<&'a u16> for &'b isize type Output = <isize as Shl<u16>>::Output;
impl<'a> Shl<&'a u128> for i64 type Output = <i64 as Shl<u128>>::Output;
impl<'a> Shl<i32> for &'a i128 type Output = <i128 as Shl<i32>>::Output;
impl<'a> Shl<&'a i128> for i8 type Output = <i8 as Shl<i128>>::Output;
impl<'a> Shl<isize> for &'a u16 type Output = <u16 as Shl<isize>>::Output;
impl Shl<u32> for i64 type Output = i64;
impl<'a> Shl<i64> for &'a u128 type Output = <u128 as Shl<i64>>::Output;
impl<'a, 'b> Shl<&'a i64> for &'b u64 type Output = <u64 as Shl<i64>>::Output;
impl Shl<i8> for i8x32 type Output = i8x32;
impl Shl<u16x2> for u16x2 type Output = u16x2;
impl Shl<i32> for i32 type Output = i32;
impl<'a> Shl<&'a i64> for isize type Output = <isize as Shl<i64>>::Output;
impl<'a, 'b> Shl<&'a i64> for &'b u128 type Output = <u128 as Shl<i64>>::Output;
impl Shl<u8> for i128 type Output = i128;
impl<'a> Shl<i16> for &'a u64 type Output = <u64 as Shl<i16>>::Output;
impl Shl<u32> for u32x16 type Output = u32x16;
impl<'a> Shl<&'a u64> for i32 type Output = <i32 as Shl<u64>>::Output;
impl Shl<i64> for i32 type Output = i32;
impl<'a, 'b> Shl<&'a u128> for &'b i16 type Output = <i16 as Shl<u128>>::Output;
impl Shl<usize> for u16x2 type Output = u16x2;