On this page
Trait std::ops::Shl
pub trait Shl<Rhs = Self> {
type Output;
// Required method
fn shl(self, rhs: Rhs) -> Self::Output;
}
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, Self(rhs): Self) -> Self::Output {
let Self(lhs) = self;
Self(lhs << rhs)
}
}
assert_eq!(Scalar(4) << Scalar(2), Scalar(16));
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) -> Self::Output {
// Rotate the vector by `rhs` places.
let (a, b) = self.vec.split_at(rhs);
let mut spun_vector = vec![];
spun_vector.extend_from_slice(b);
spun_vector.extend_from_slice(a);
Self { vec: spun_vector }
}
}
assert_eq!(SpinVector { vec: vec![0, 1, 2, 3, 4] } << 2,
SpinVector { vec: vec![2, 3, 4, 0, 1] });
Required Associated Types
type Output
The resulting type after applying the <<
operator.
Required Methods
fn shl(self, rhs: Rhs) -> Self::Output
Performs the <<
operation.
Examples
assert_eq!(5u8 << 1, 10);
assert_eq!(1u8 << 1, 2);
Implementors
impl Shl for i8
type Output = i8
impl Shl for i16
type Output = i16
impl Shl for i32
type Output = i32
impl Shl for i64
type Output = i64
impl Shl for i128
type Output = i128
impl Shl for isize
type Output = isize
impl Shl for u8
type Output = u8
impl Shl for u16
type Output = u16
impl Shl for u32
type Output = u32
impl Shl for u64
type Output = u64
impl Shl for u128
type Output = u128
impl Shl for usize
type Output = usize
impl Shl<&i8> for &i8
type Output = <i8 as Shl>::Output
impl Shl<&i8> for &i16
type Output = <i16 as Shl<i8>>::Output
impl Shl<&i8> for &i32
type Output = <i32 as Shl<i8>>::Output
impl Shl<&i8> for &i64
type Output = <i64 as Shl<i8>>::Output
impl Shl<&i8> for &i128
type Output = <i128 as Shl<i8>>::Output
impl Shl<&i8> for &isize
type Output = <isize as Shl<i8>>::Output
impl Shl<&i8> for &u8
type Output = <u8 as Shl<i8>>::Output
impl Shl<&i8> for &u16
type Output = <u16 as Shl<i8>>::Output
impl Shl<&i8> for &u32
type Output = <u32 as Shl<i8>>::Output
impl Shl<&i8> for &u64
type Output = <u64 as Shl<i8>>::Output
impl Shl<&i8> for &u128
type Output = <u128 as Shl<i8>>::Output
impl Shl<&i8> for &usize
type Output = <usize as Shl<i8>>::Output
impl Shl<&i8> for i8
type Output = <i8 as Shl>::Output
impl Shl<&i8> for i16
type Output = <i16 as Shl<i8>>::Output
impl Shl<&i8> for i32
type Output = <i32 as Shl<i8>>::Output
impl Shl<&i8> for i64
type Output = <i64 as Shl<i8>>::Output
impl Shl<&i8> for i128
type Output = <i128 as Shl<i8>>::Output
impl Shl<&i8> for isize
type Output = <isize as Shl<i8>>::Output
impl Shl<&i8> for u8
type Output = <u8 as Shl<i8>>::Output
impl Shl<&i8> for u16
type Output = <u16 as Shl<i8>>::Output
impl Shl<&i8> for u32
type Output = <u32 as Shl<i8>>::Output
impl Shl<&i8> for u64
type Output = <u64 as Shl<i8>>::Output
impl Shl<&i8> for u128
type Output = <u128 as Shl<i8>>::Output
impl Shl<&i8> for usize
type Output = <usize as Shl<i8>>::Output
impl Shl<&i16> for &i8
type Output = <i8 as Shl<i16>>::Output
impl Shl<&i16> for &i16
type Output = <i16 as Shl>::Output
impl Shl<&i16> for &i32
type Output = <i32 as Shl<i16>>::Output
impl Shl<&i16> for &i64
type Output = <i64 as Shl<i16>>::Output
impl Shl<&i16> for &i128
type Output = <i128 as Shl<i16>>::Output
impl Shl<&i16> for &isize
type Output = <isize as Shl<i16>>::Output
impl Shl<&i16> for &u8
type Output = <u8 as Shl<i16>>::Output
impl Shl<&i16> for &u16
type Output = <u16 as Shl<i16>>::Output
impl Shl<&i16> for &u32
type Output = <u32 as Shl<i16>>::Output
impl Shl<&i16> for &u64
type Output = <u64 as Shl<i16>>::Output
impl Shl<&i16> for &u128
type Output = <u128 as Shl<i16>>::Output
impl Shl<&i16> for &usize
type Output = <usize as Shl<i16>>::Output
impl Shl<&i16> for i8
type Output = <i8 as Shl<i16>>::Output
impl Shl<&i16> for i16
type Output = <i16 as Shl>::Output
impl Shl<&i16> for i32
type Output = <i32 as Shl<i16>>::Output
impl Shl<&i16> for i64
type Output = <i64 as Shl<i16>>::Output
impl Shl<&i16> for i128
type Output = <i128 as Shl<i16>>::Output
impl Shl<&i16> for isize
type Output = <isize as Shl<i16>>::Output
impl Shl<&i16> for u8
type Output = <u8 as Shl<i16>>::Output
impl Shl<&i16> for u16
type Output = <u16 as Shl<i16>>::Output
impl Shl<&i16> for u32
type Output = <u32 as Shl<i16>>::Output
impl Shl<&i16> for u64
type Output = <u64 as Shl<i16>>::Output
impl Shl<&i16> for u128
type Output = <u128 as Shl<i16>>::Output
impl Shl<&i16> for usize
type Output = <usize as Shl<i16>>::Output
impl Shl<&i32> for &i8
type Output = <i8 as Shl<i32>>::Output
impl Shl<&i32> for &i16
type Output = <i16 as Shl<i32>>::Output
impl Shl<&i32> for &i32
type Output = <i32 as Shl>::Output
impl Shl<&i32> for &i64
type Output = <i64 as Shl<i32>>::Output
impl Shl<&i32> for &i128
type Output = <i128 as Shl<i32>>::Output
impl Shl<&i32> for &isize
type Output = <isize as Shl<i32>>::Output
impl Shl<&i32> for &u8
type Output = <u8 as Shl<i32>>::Output
impl Shl<&i32> for &u16
type Output = <u16 as Shl<i32>>::Output
impl Shl<&i32> for &u32
type Output = <u32 as Shl<i32>>::Output
impl Shl<&i32> for &u64
type Output = <u64 as Shl<i32>>::Output
impl Shl<&i32> for &u128
type Output = <u128 as Shl<i32>>::Output
impl Shl<&i32> for &usize
type Output = <usize as Shl<i32>>::Output
impl Shl<&i32> for i8
type Output = <i8 as Shl<i32>>::Output
impl Shl<&i32> for i16
type Output = <i16 as Shl<i32>>::Output
impl Shl<&i32> for i32
type Output = <i32 as Shl>::Output
impl Shl<&i32> for i64
type Output = <i64 as Shl<i32>>::Output
impl Shl<&i32> for i128
type Output = <i128 as Shl<i32>>::Output
impl Shl<&i32> for isize
type Output = <isize as Shl<i32>>::Output
impl Shl<&i32> for u8
type Output = <u8 as Shl<i32>>::Output
impl Shl<&i32> for u16
type Output = <u16 as Shl<i32>>::Output
impl Shl<&i32> for u32
type Output = <u32 as Shl<i32>>::Output
impl Shl<&i32> for u64
type Output = <u64 as Shl<i32>>::Output
impl Shl<&i32> for u128
type Output = <u128 as Shl<i32>>::Output
impl Shl<&i32> for usize
type Output = <usize as Shl<i32>>::Output
impl Shl<&i64> for &i8
type Output = <i8 as Shl<i64>>::Output
impl Shl<&i64> for &i16
type Output = <i16 as Shl<i64>>::Output
impl Shl<&i64> for &i32
type Output = <i32 as Shl<i64>>::Output
impl Shl<&i64> for &i64
type Output = <i64 as Shl>::Output
impl Shl<&i64> for &i128
type Output = <i128 as Shl<i64>>::Output
impl Shl<&i64> for &isize
type Output = <isize as Shl<i64>>::Output
impl Shl<&i64> for &u8
type Output = <u8 as Shl<i64>>::Output
impl Shl<&i64> for &u16
type Output = <u16 as Shl<i64>>::Output
impl Shl<&i64> for &u32
type Output = <u32 as Shl<i64>>::Output
impl Shl<&i64> for &u64
type Output = <u64 as Shl<i64>>::Output
impl Shl<&i64> for &u128
type Output = <u128 as Shl<i64>>::Output
impl Shl<&i64> for &usize
type Output = <usize as Shl<i64>>::Output
impl Shl<&i64> for i8
type Output = <i8 as Shl<i64>>::Output
impl Shl<&i64> for i16
type Output = <i16 as Shl<i64>>::Output
impl Shl<&i64> for i32
type Output = <i32 as Shl<i64>>::Output
impl Shl<&i64> for i64
type Output = <i64 as Shl>::Output
impl Shl<&i64> for i128
type Output = <i128 as Shl<i64>>::Output
impl Shl<&i64> for isize
type Output = <isize as Shl<i64>>::Output
impl Shl<&i64> for u8
type Output = <u8 as Shl<i64>>::Output
impl Shl<&i64> for u16
type Output = <u16 as Shl<i64>>::Output
impl Shl<&i64> for u32
type Output = <u32 as Shl<i64>>::Output
impl Shl<&i64> for u64
type Output = <u64 as Shl<i64>>::Output
impl Shl<&i64> for u128
type Output = <u128 as Shl<i64>>::Output
impl Shl<&i64> for usize
type Output = <usize as Shl<i64>>::Output
impl Shl<&i128> for &i8
type Output = <i8 as Shl<i128>>::Output
impl Shl<&i128> for &i16
type Output = <i16 as Shl<i128>>::Output
impl Shl<&i128> for &i32
type Output = <i32 as Shl<i128>>::Output
impl Shl<&i128> for &i64
type Output = <i64 as Shl<i128>>::Output
impl Shl<&i128> for &i128
type Output = <i128 as Shl>::Output
impl Shl<&i128> for &isize
type Output = <isize as Shl<i128>>::Output
impl Shl<&i128> for &u8
type Output = <u8 as Shl<i128>>::Output
impl Shl<&i128> for &u16
type Output = <u16 as Shl<i128>>::Output
impl Shl<&i128> for &u32
type Output = <u32 as Shl<i128>>::Output
impl Shl<&i128> for &u64
type Output = <u64 as Shl<i128>>::Output
impl Shl<&i128> for &u128
type Output = <u128 as Shl<i128>>::Output
impl Shl<&i128> for &usize
type Output = <usize as Shl<i128>>::Output
impl Shl<&i128> for i8
type Output = <i8 as Shl<i128>>::Output
impl Shl<&i128> for i16
type Output = <i16 as Shl<i128>>::Output
impl Shl<&i128> for i32
type Output = <i32 as Shl<i128>>::Output
impl Shl<&i128> for i64
type Output = <i64 as Shl<i128>>::Output
impl Shl<&i128> for i128
type Output = <i128 as Shl>::Output
impl Shl<&i128> for isize
type Output = <isize as Shl<i128>>::Output
impl Shl<&i128> for u8
type Output = <u8 as Shl<i128>>::Output
impl Shl<&i128> for u16
type Output = <u16 as Shl<i128>>::Output
impl Shl<&i128> for u32
type Output = <u32 as Shl<i128>>::Output
impl Shl<&i128> for u64
type Output = <u64 as Shl<i128>>::Output
impl Shl<&i128> for u128
type Output = <u128 as Shl<i128>>::Output
impl Shl<&i128> for usize
type Output = <usize as Shl<i128>>::Output
impl Shl<&isize> for &i8
type Output = <i8 as Shl<isize>>::Output
impl Shl<&isize> for &i16
type Output = <i16 as Shl<isize>>::Output
impl Shl<&isize> for &i32
type Output = <i32 as Shl<isize>>::Output
impl Shl<&isize> for &i64
type Output = <i64 as Shl<isize>>::Output
impl Shl<&isize> for &i128
type Output = <i128 as Shl<isize>>::Output
impl Shl<&isize> for &isize
type Output = <isize as Shl>::Output
impl Shl<&isize> for &u8
type Output = <u8 as Shl<isize>>::Output
impl Shl<&isize> for &u16
type Output = <u16 as Shl<isize>>::Output
impl Shl<&isize> for &u32
type Output = <u32 as Shl<isize>>::Output
impl Shl<&isize> for &u64
type Output = <u64 as Shl<isize>>::Output
impl Shl<&isize> for &u128
type Output = <u128 as Shl<isize>>::Output
impl Shl<&isize> for &usize
type Output = <usize as Shl<isize>>::Output
impl Shl<&isize> for i8
type Output = <i8 as Shl<isize>>::Output
impl Shl<&isize> for i16
type Output = <i16 as Shl<isize>>::Output
impl Shl<&isize> for i32
type Output = <i32 as Shl<isize>>::Output
impl Shl<&isize> for i64
type Output = <i64 as Shl<isize>>::Output
impl Shl<&isize> for i128
type Output = <i128 as Shl<isize>>::Output
impl Shl<&isize> for isize
type Output = <isize as Shl>::Output
impl Shl<&isize> for u8
type Output = <u8 as Shl<isize>>::Output
impl Shl<&isize> for u16
type Output = <u16 as Shl<isize>>::Output
impl Shl<&isize> for u32
type Output = <u32 as Shl<isize>>::Output
impl Shl<&isize> for u64
type Output = <u64 as Shl<isize>>::Output
impl Shl<&isize> for u128
type Output = <u128 as Shl<isize>>::Output
impl Shl<&isize> for usize
type Output = <usize as Shl<isize>>::Output
impl Shl<&u8> for &i8
type Output = <i8 as Shl<u8>>::Output
impl Shl<&u8> for &i16
type Output = <i16 as Shl<u8>>::Output
impl Shl<&u8> for &i32
type Output = <i32 as Shl<u8>>::Output
impl Shl<&u8> for &i64
type Output = <i64 as Shl<u8>>::Output
impl Shl<&u8> for &i128
type Output = <i128 as Shl<u8>>::Output
impl Shl<&u8> for &isize
type Output = <isize as Shl<u8>>::Output
impl Shl<&u8> for &u8
type Output = <u8 as Shl>::Output
impl Shl<&u8> for &u16
type Output = <u16 as Shl<u8>>::Output
impl Shl<&u8> for &u32
type Output = <u32 as Shl<u8>>::Output
impl Shl<&u8> for &u64
type Output = <u64 as Shl<u8>>::Output
impl Shl<&u8> for &u128
type Output = <u128 as Shl<u8>>::Output
impl Shl<&u8> for &usize
type Output = <usize as Shl<u8>>::Output
impl Shl<&u8> for i8
type Output = <i8 as Shl<u8>>::Output
impl Shl<&u8> for i16
type Output = <i16 as Shl<u8>>::Output
impl Shl<&u8> for i32
type Output = <i32 as Shl<u8>>::Output
impl Shl<&u8> for i64
type Output = <i64 as Shl<u8>>::Output
impl Shl<&u8> for i128
type Output = <i128 as Shl<u8>>::Output
impl Shl<&u8> for isize
type Output = <isize as Shl<u8>>::Output
impl Shl<&u8> for u8
type Output = <u8 as Shl>::Output
impl Shl<&u8> for u16
type Output = <u16 as Shl<u8>>::Output
impl Shl<&u8> for u32
type Output = <u32 as Shl<u8>>::Output
impl Shl<&u8> for u64
type Output = <u64 as Shl<u8>>::Output
impl Shl<&u8> for u128
type Output = <u128 as Shl<u8>>::Output
impl Shl<&u8> for usize
type Output = <usize as Shl<u8>>::Output
impl Shl<&u16> for &i8
type Output = <i8 as Shl<u16>>::Output
impl Shl<&u16> for &i16
type Output = <i16 as Shl<u16>>::Output
impl Shl<&u16> for &i32
type Output = <i32 as Shl<u16>>::Output
impl Shl<&u16> for &i64
type Output = <i64 as Shl<u16>>::Output
impl Shl<&u16> for &i128
type Output = <i128 as Shl<u16>>::Output
impl Shl<&u16> for &isize
type Output = <isize as Shl<u16>>::Output
impl Shl<&u16> for &u8
type Output = <u8 as Shl<u16>>::Output
impl Shl<&u16> for &u16
type Output = <u16 as Shl>::Output
impl Shl<&u16> for &u32
type Output = <u32 as Shl<u16>>::Output
impl Shl<&u16> for &u64
type Output = <u64 as Shl<u16>>::Output
impl Shl<&u16> for &u128
type Output = <u128 as Shl<u16>>::Output
impl Shl<&u16> for &usize
type Output = <usize as Shl<u16>>::Output
impl Shl<&u16> for i8
type Output = <i8 as Shl<u16>>::Output
impl Shl<&u16> for i16
type Output = <i16 as Shl<u16>>::Output
impl Shl<&u16> for i32
type Output = <i32 as Shl<u16>>::Output
impl Shl<&u16> for i64
type Output = <i64 as Shl<u16>>::Output
impl Shl<&u16> for i128
type Output = <i128 as Shl<u16>>::Output
impl Shl<&u16> for isize
type Output = <isize as Shl<u16>>::Output
impl Shl<&u16> for u8
type Output = <u8 as Shl<u16>>::Output
impl Shl<&u16> for u16
type Output = <u16 as Shl>::Output
impl Shl<&u16> for u32
type Output = <u32 as Shl<u16>>::Output
impl Shl<&u16> for u64
type Output = <u64 as Shl<u16>>::Output
impl Shl<&u16> for u128
type Output = <u128 as Shl<u16>>::Output
impl Shl<&u16> for usize
type Output = <usize as Shl<u16>>::Output
impl Shl<&u32> for &i8
type Output = <i8 as Shl<u32>>::Output
impl Shl<&u32> for &i16
type Output = <i16 as Shl<u32>>::Output
impl Shl<&u32> for &i32
type Output = <i32 as Shl<u32>>::Output
impl Shl<&u32> for &i64
type Output = <i64 as Shl<u32>>::Output
impl Shl<&u32> for &i128
type Output = <i128 as Shl<u32>>::Output
impl Shl<&u32> for &isize
type Output = <isize as Shl<u32>>::Output
impl Shl<&u32> for &u8
type Output = <u8 as Shl<u32>>::Output
impl Shl<&u32> for &u16
type Output = <u16 as Shl<u32>>::Output
impl Shl<&u32> for &u32
type Output = <u32 as Shl>::Output
impl Shl<&u32> for &u64
type Output = <u64 as Shl<u32>>::Output
impl Shl<&u32> for &u128
type Output = <u128 as Shl<u32>>::Output
impl Shl<&u32> for &usize
type Output = <usize as Shl<u32>>::Output
impl Shl<&u32> for i8
type Output = <i8 as Shl<u32>>::Output
impl Shl<&u32> for i16
type Output = <i16 as Shl<u32>>::Output
impl Shl<&u32> for i32
type Output = <i32 as Shl<u32>>::Output
impl Shl<&u32> for i64
type Output = <i64 as Shl<u32>>::Output
impl Shl<&u32> for i128
type Output = <i128 as Shl<u32>>::Output
impl Shl<&u32> for isize
type Output = <isize as Shl<u32>>::Output
impl Shl<&u32> for u8
type Output = <u8 as Shl<u32>>::Output
impl Shl<&u32> for u16
type Output = <u16 as Shl<u32>>::Output
impl Shl<&u32> for u32
type Output = <u32 as Shl>::Output
impl Shl<&u32> for u64
type Output = <u64 as Shl<u32>>::Output
impl Shl<&u32> for u128
type Output = <u128 as Shl<u32>>::Output
impl Shl<&u32> for usize
type Output = <usize as Shl<u32>>::Output
impl Shl<&u64> for &i8
type Output = <i8 as Shl<u64>>::Output
impl Shl<&u64> for &i16
type Output = <i16 as Shl<u64>>::Output
impl Shl<&u64> for &i32
type Output = <i32 as Shl<u64>>::Output
impl Shl<&u64> for &i64
type Output = <i64 as Shl<u64>>::Output
impl Shl<&u64> for &i128
type Output = <i128 as Shl<u64>>::Output
impl Shl<&u64> for &isize
type Output = <isize as Shl<u64>>::Output
impl Shl<&u64> for &u8
type Output = <u8 as Shl<u64>>::Output
impl Shl<&u64> for &u16
type Output = <u16 as Shl<u64>>::Output
impl Shl<&u64> for &u32
type Output = <u32 as Shl<u64>>::Output
impl Shl<&u64> for &u64
type Output = <u64 as Shl>::Output
impl Shl<&u64> for &u128
type Output = <u128 as Shl<u64>>::Output
impl Shl<&u64> for &usize
type Output = <usize as Shl<u64>>::Output
impl Shl<&u64> for i8
type Output = <i8 as Shl<u64>>::Output
impl Shl<&u64> for i16
type Output = <i16 as Shl<u64>>::Output
impl Shl<&u64> for i32
type Output = <i32 as Shl<u64>>::Output
impl Shl<&u64> for i64
type Output = <i64 as Shl<u64>>::Output
impl Shl<&u64> for i128
type Output = <i128 as Shl<u64>>::Output
impl Shl<&u64> for isize
type Output = <isize as Shl<u64>>::Output
impl Shl<&u64> for u8
type Output = <u8 as Shl<u64>>::Output
impl Shl<&u64> for u16
type Output = <u16 as Shl<u64>>::Output
impl Shl<&u64> for u32
type Output = <u32 as Shl<u64>>::Output
impl Shl<&u64> for u64
type Output = <u64 as Shl>::Output
impl Shl<&u64> for u128
type Output = <u128 as Shl<u64>>::Output
impl Shl<&u64> for usize
type Output = <usize as Shl<u64>>::Output
impl Shl<&u128> for &i8
type Output = <i8 as Shl<u128>>::Output
impl Shl<&u128> for &i16
type Output = <i16 as Shl<u128>>::Output
impl Shl<&u128> for &i32
type Output = <i32 as Shl<u128>>::Output
impl Shl<&u128> for &i64
type Output = <i64 as Shl<u128>>::Output
impl Shl<&u128> for &i128
type Output = <i128 as Shl<u128>>::Output
impl Shl<&u128> for &isize
type Output = <isize as Shl<u128>>::Output
impl Shl<&u128> for &u8
type Output = <u8 as Shl<u128>>::Output
impl Shl<&u128> for &u16
type Output = <u16 as Shl<u128>>::Output
impl Shl<&u128> for &u32
type Output = <u32 as Shl<u128>>::Output
impl Shl<&u128> for &u64
type Output = <u64 as Shl<u128>>::Output
impl Shl<&u128> for &u128
type Output = <u128 as Shl>::Output
impl Shl<&u128> for &usize
type Output = <usize as Shl<u128>>::Output
impl Shl<&u128> for i8
type Output = <i8 as Shl<u128>>::Output
impl Shl<&u128> for i16
type Output = <i16 as Shl<u128>>::Output
impl Shl<&u128> for i32
type Output = <i32 as Shl<u128>>::Output
impl Shl<&u128> for i64
type Output = <i64 as Shl<u128>>::Output
impl Shl<&u128> for i128
type Output = <i128 as Shl<u128>>::Output
impl Shl<&u128> for isize
type Output = <isize as Shl<u128>>::Output
impl Shl<&u128> for u8
type Output = <u8 as Shl<u128>>::Output
impl Shl<&u128> for u16
type Output = <u16 as Shl<u128>>::Output
impl Shl<&u128> for u32
type Output = <u32 as Shl<u128>>::Output
impl Shl<&u128> for u64
type Output = <u64 as Shl<u128>>::Output
impl Shl<&u128> for u128
type Output = <u128 as Shl>::Output
impl Shl<&u128> for usize
type Output = <usize as Shl<u128>>::Output
impl Shl<&usize> for &i8
type Output = <i8 as Shl<usize>>::Output
impl Shl<&usize> for &i16
type Output = <i16 as Shl<usize>>::Output
impl Shl<&usize> for &i32
type Output = <i32 as Shl<usize>>::Output
impl Shl<&usize> for &i64
type Output = <i64 as Shl<usize>>::Output
impl Shl<&usize> for &i128
type Output = <i128 as Shl<usize>>::Output
impl Shl<&usize> for &isize
type Output = <isize as Shl<usize>>::Output
impl Shl<&usize> for &u8
type Output = <u8 as Shl<usize>>::Output
impl Shl<&usize> for &u16
type Output = <u16 as Shl<usize>>::Output
impl Shl<&usize> for &u32
type Output = <u32 as Shl<usize>>::Output
impl Shl<&usize> for &u64
type Output = <u64 as Shl<usize>>::Output
impl Shl<&usize> for &u128
type Output = <u128 as Shl<usize>>::Output
impl Shl<&usize> for &usize
type Output = <usize as Shl>::Output
impl Shl<&usize> for &Wrapping<i8>
type Output = <Wrapping<i8> as Shl<usize>>::Output
impl Shl<&usize> for &Wrapping<i16>
type Output = <Wrapping<i16> as Shl<usize>>::Output
impl Shl<&usize> for &Wrapping<i32>
type Output = <Wrapping<i32> as Shl<usize>>::Output
impl Shl<&usize> for &Wrapping<i64>
type Output = <Wrapping<i64> as Shl<usize>>::Output
impl Shl<&usize> for &Wrapping<i128>
type Output = <Wrapping<i128> as Shl<usize>>::Output
impl Shl<&usize> for &Wrapping<isize>
type Output = <Wrapping<isize> as Shl<usize>>::Output
impl Shl<&usize> for &Wrapping<u8>
type Output = <Wrapping<u8> as Shl<usize>>::Output
impl Shl<&usize> for &Wrapping<u16>
type Output = <Wrapping<u16> as Shl<usize>>::Output
impl Shl<&usize> for &Wrapping<u32>
type Output = <Wrapping<u32> as Shl<usize>>::Output
impl Shl<&usize> for &Wrapping<u64>
type Output = <Wrapping<u64> as Shl<usize>>::Output
impl Shl<&usize> for &Wrapping<u128>
type Output = <Wrapping<u128> as Shl<usize>>::Output
impl Shl<&usize> for &Wrapping<usize>
type Output = <Wrapping<usize> as Shl<usize>>::Output
impl Shl<&usize> for i8
type Output = <i8 as Shl<usize>>::Output
impl Shl<&usize> for i16
type Output = <i16 as Shl<usize>>::Output
impl Shl<&usize> for i32
type Output = <i32 as Shl<usize>>::Output
impl Shl<&usize> for i64
type Output = <i64 as Shl<usize>>::Output
impl Shl<&usize> for i128
type Output = <i128 as Shl<usize>>::Output
impl Shl<&usize> for isize
type Output = <isize as Shl<usize>>::Output
impl Shl<&usize> for u8
type Output = <u8 as Shl<usize>>::Output
impl Shl<&usize> for u16
type Output = <u16 as Shl<usize>>::Output
impl Shl<&usize> for u32
type Output = <u32 as Shl<usize>>::Output
impl Shl<&usize> for u64
type Output = <u64 as Shl<usize>>::Output
impl Shl<&usize> for u128
type Output = <u128 as Shl<usize>>::Output
impl Shl<&usize> for usize
type Output = <usize as Shl>::Output
impl Shl<&usize> for Wrapping<i8>
type Output = <Wrapping<i8> as Shl<usize>>::Output
impl Shl<&usize> for Wrapping<i16>
type Output = <Wrapping<i16> as Shl<usize>>::Output
impl Shl<&usize> for Wrapping<i32>
type Output = <Wrapping<i32> as Shl<usize>>::Output
impl Shl<&usize> for Wrapping<i64>
type Output = <Wrapping<i64> as Shl<usize>>::Output
impl Shl<&usize> for Wrapping<i128>
type Output = <Wrapping<i128> as Shl<usize>>::Output
impl Shl<&usize> for Wrapping<isize>
type Output = <Wrapping<isize> as Shl<usize>>::Output
impl Shl<&usize> for Wrapping<u8>
type Output = <Wrapping<u8> as Shl<usize>>::Output
impl Shl<&usize> for Wrapping<u16>
type Output = <Wrapping<u16> as Shl<usize>>::Output
impl Shl<&usize> for Wrapping<u32>
type Output = <Wrapping<u32> as Shl<usize>>::Output
impl Shl<&usize> for Wrapping<u64>
type Output = <Wrapping<u64> as Shl<usize>>::Output
impl Shl<&usize> for Wrapping<u128>
type Output = <Wrapping<u128> as Shl<usize>>::Output
impl Shl<&usize> for Wrapping<usize>
type Output = <Wrapping<usize> as Shl<usize>>::Output
impl Shl<i8> for i16
type Output = i16
impl Shl<i8> for i32
type Output = i32
impl Shl<i8> for i64
type Output = i64
impl Shl<i8> for i128
type Output = i128
impl Shl<i8> for isize
type Output = isize
impl Shl<i8> for u8
type Output = u8
impl Shl<i8> for u16
type Output = u16
impl Shl<i8> for u32
type Output = u32
impl Shl<i8> for u64
type Output = u64
impl Shl<i8> for u128
type Output = u128
impl Shl<i8> for usize
type Output = usize
impl Shl<i16> for i8
type Output = i8
impl Shl<i16> for i32
type Output = i32
impl Shl<i16> for i64
type Output = i64
impl Shl<i16> for i128
type Output = i128
impl Shl<i16> for isize
type Output = isize
impl Shl<i16> for u8
type Output = u8
impl Shl<i16> for u16
type Output = u16
impl Shl<i16> for u32
type Output = u32
impl Shl<i16> for u64
type Output = u64
impl Shl<i16> for u128
type Output = u128
impl Shl<i16> for usize
type Output = usize
impl Shl<i32> for i8
type Output = i8
impl Shl<i32> for i16
type Output = i16
impl Shl<i32> for i64
type Output = i64
impl Shl<i32> for i128
type Output = i128
impl Shl<i32> for isize
type Output = isize
impl Shl<i32> for u8
type Output = u8
impl Shl<i32> for u16
type Output = u16
impl Shl<i32> for u32
type Output = u32
impl Shl<i32> for u64
type Output = u64
impl Shl<i32> for u128
type Output = u128
impl Shl<i32> for usize
type Output = usize
impl Shl<i64> for i8
type Output = i8
impl Shl<i64> for i16
type Output = i16
impl Shl<i64> for i32
type Output = i32
impl Shl<i64> for i128
type Output = i128
impl Shl<i64> for isize
type Output = isize
impl Shl<i64> for u8
type Output = u8
impl Shl<i64> for u16
type Output = u16
impl Shl<i64> for u32
type Output = u32
impl Shl<i64> for u64
type Output = u64
impl Shl<i64> for u128
type Output = u128
impl Shl<i64> for usize
type Output = usize
impl Shl<i128> for i8
type Output = i8
impl Shl<i128> for i16
type Output = i16
impl Shl<i128> for i32
type Output = i32
impl Shl<i128> for i64
type Output = i64
impl Shl<i128> for isize
type Output = isize
impl Shl<i128> for u8
type Output = u8
impl Shl<i128> for u16
type Output = u16
impl Shl<i128> for u32
type Output = u32
impl Shl<i128> for u64
type Output = u64
impl Shl<i128> for u128
type Output = u128
impl Shl<i128> for usize
type Output = usize
impl Shl<isize> for i8
type Output = i8
impl Shl<isize> for i16
type Output = i16
impl Shl<isize> for i32
type Output = i32
impl Shl<isize> for i64
type Output = i64
impl Shl<isize> for i128
type Output = i128
impl Shl<isize> for u8
type Output = u8
impl Shl<isize> for u16
type Output = u16
impl Shl<isize> for u32
type Output = u32
impl Shl<isize> for u64
type Output = u64
impl Shl<isize> for u128
type Output = u128
impl Shl<isize> for usize
type Output = usize
impl Shl<u8> for i8
type Output = i8
impl Shl<u8> for i16
type Output = i16
impl Shl<u8> for i32
type Output = i32
impl Shl<u8> for i64
type Output = i64
impl Shl<u8> for i128
type Output = i128
impl Shl<u8> for isize
type Output = isize
impl Shl<u8> for u16
type Output = u16
impl Shl<u8> for u32
type Output = u32
impl Shl<u8> for u64
type Output = u64
impl Shl<u8> for u128
type Output = u128
impl Shl<u8> for usize
type Output = usize
impl Shl<u16> for i8
type Output = i8
impl Shl<u16> for i16
type Output = i16
impl Shl<u16> for i32
type Output = i32
impl Shl<u16> for i64
type Output = i64
impl Shl<u16> for i128
type Output = i128
impl Shl<u16> for isize
type Output = isize
impl Shl<u16> for u8
type Output = u8
impl Shl<u16> for u32
type Output = u32
impl Shl<u16> for u64
type Output = u64
impl Shl<u16> for u128
type Output = u128
impl Shl<u16> for usize
type Output = usize
impl Shl<u32> for i8
type Output = i8
impl Shl<u32> for i16
type Output = i16
impl Shl<u32> for i32
type Output = i32
impl Shl<u32> for i64
type Output = i64
impl Shl<u32> for i128
type Output = i128
impl Shl<u32> for isize
type Output = isize
impl Shl<u32> for u8
type Output = u8
impl Shl<u32> for u16
type Output = u16
impl Shl<u32> for u64
type Output = u64
impl Shl<u32> for u128
type Output = u128
impl Shl<u32> for usize
type Output = usize
impl Shl<u64> for i8
type Output = i8
impl Shl<u64> for i16
type Output = i16
impl Shl<u64> for i32
type Output = i32
impl Shl<u64> for i64
type Output = i64
impl Shl<u64> for i128
type Output = i128
impl Shl<u64> for isize
type Output = isize
impl Shl<u64> for u8
type Output = u8
impl Shl<u64> for u16
type Output = u16
impl Shl<u64> for u32
type Output = u32
impl Shl<u64> for u128
type Output = u128
impl Shl<u64> for usize
type Output = usize
impl Shl<u128> for i8
type Output = i8
impl Shl<u128> for i16
type Output = i16
impl Shl<u128> for i32
type Output = i32
impl Shl<u128> for i64
type Output = i64
impl Shl<u128> for i128
type Output = i128
impl Shl<u128> for isize
type Output = isize
impl Shl<u128> for u8
type Output = u8
impl Shl<u128> for u16
type Output = u16
impl Shl<u128> for u32
type Output = u32
impl Shl<u128> for u64
type Output = u64
impl Shl<u128> for usize
type Output = usize
impl Shl<usize> for i8
type Output = i8
impl Shl<usize> for i16
type Output = i16
impl Shl<usize> for i32
type Output = i32
impl Shl<usize> for i64
type Output = i64
impl Shl<usize> for i128
type Output = i128
impl Shl<usize> for isize
type Output = isize
impl Shl<usize> for u8
type Output = u8
impl Shl<usize> for u16
type Output = u16
impl Shl<usize> for u32
type Output = u32
impl Shl<usize> for u64
type Output = u64
impl Shl<usize> for u128
type Output = u128
impl Shl<usize> for Wrapping<i8>
type Output = Wrapping<i8>
impl Shl<usize> for Wrapping<i16>
type Output = Wrapping<i16>
impl Shl<usize> for Wrapping<i32>
type Output = Wrapping<i32>
impl Shl<usize> for Wrapping<i64>
type Output = Wrapping<i64>
impl Shl<usize> for Wrapping<i128>
type Output = Wrapping<i128>
impl Shl<usize> for Wrapping<isize>
type Output = Wrapping<isize>
impl Shl<usize> for Wrapping<u8>
type Output = Wrapping<u8>
impl Shl<usize> for Wrapping<u16>
type Output = Wrapping<u16>
impl Shl<usize> for Wrapping<u32>
type Output = Wrapping<u32>
impl Shl<usize> for Wrapping<u64>
type Output = Wrapping<u64>
impl Shl<usize> for Wrapping<u128>
type Output = Wrapping<u128>
impl Shl<usize> for Wrapping<usize>
type Output = Wrapping<usize>
impl<'a> Shl<i8> for &'a i8
type Output = <i8 as Shl>::Output
impl<'a> Shl<i8> for &'a i16
type Output = <i16 as Shl<i8>>::Output
impl<'a> Shl<i8> for &'a i32
type Output = <i32 as Shl<i8>>::Output
impl<'a> Shl<i8> for &'a i64
type Output = <i64 as Shl<i8>>::Output
impl<'a> Shl<i8> for &'a i128
type Output = <i128 as Shl<i8>>::Output
impl<'a> Shl<i8> for &'a isize
type Output = <isize as Shl<i8>>::Output
impl<'a> Shl<i8> for &'a u8
type Output = <u8 as Shl<i8>>::Output
impl<'a> Shl<i8> for &'a u16
type Output = <u16 as Shl<i8>>::Output
impl<'a> Shl<i8> for &'a u32
type Output = <u32 as Shl<i8>>::Output
impl<'a> Shl<i8> for &'a u64
type Output = <u64 as Shl<i8>>::Output
impl<'a> Shl<i8> for &'a u128
type Output = <u128 as Shl<i8>>::Output
impl<'a> Shl<i8> for &'a usize
type Output = <usize as Shl<i8>>::Output
impl<'a> Shl<i16> for &'a i8
type Output = <i8 as Shl<i16>>::Output
impl<'a> Shl<i16> for &'a i16
type Output = <i16 as Shl>::Output
impl<'a> Shl<i16> for &'a i32
type Output = <i32 as Shl<i16>>::Output
impl<'a> Shl<i16> for &'a i64
type Output = <i64 as Shl<i16>>::Output
impl<'a> Shl<i16> for &'a i128
type Output = <i128 as Shl<i16>>::Output
impl<'a> Shl<i16> for &'a 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<i16> for &'a u16
type Output = <u16 as Shl<i16>>::Output
impl<'a> Shl<i16> for &'a u32
type Output = <u32 as Shl<i16>>::Output
impl<'a> Shl<i16> for &'a u64
type Output = <u64 as Shl<i16>>::Output
impl<'a> Shl<i16> for &'a u128
type Output = <u128 as Shl<i16>>::Output
impl<'a> Shl<i16> for &'a usize
type Output = <usize as Shl<i16>>::Output
impl<'a> Shl<i32> for &'a i8
type Output = <i8 as Shl<i32>>::Output
impl<'a> Shl<i32> for &'a i16
type Output = <i16 as Shl<i32>>::Output
impl<'a> Shl<i32> for &'a i32
type Output = <i32 as Shl>::Output
impl<'a> Shl<i32> for &'a i64
type Output = <i64 as Shl<i32>>::Output
impl<'a> Shl<i32> for &'a i128
type Output = <i128 as Shl<i32>>::Output
impl<'a> Shl<i32> for &'a isize
type Output = <isize as Shl<i32>>::Output
impl<'a> Shl<i32> for &'a u8
type Output = <u8 as Shl<i32>>::Output
impl<'a> Shl<i32> for &'a u16
type Output = <u16 as Shl<i32>>::Output
impl<'a> Shl<i32> for &'a u32
type Output = <u32 as Shl<i32>>::Output
impl<'a> Shl<i32> for &'a u64
type Output = <u64 as Shl<i32>>::Output
impl<'a> Shl<i32> for &'a u128
type Output = <u128 as Shl<i32>>::Output
impl<'a> Shl<i32> for &'a usize
type Output = <usize as Shl<i32>>::Output
impl<'a> Shl<i64> for &'a i8
type Output = <i8 as Shl<i64>>::Output
impl<'a> Shl<i64> for &'a i16
type Output = <i16 as Shl<i64>>::Output
impl<'a> Shl<i64> for &'a i32
type Output = <i32 as Shl<i64>>::Output
impl<'a> Shl<i64> for &'a i64
type Output = <i64 as Shl>::Output
impl<'a> Shl<i64> for &'a 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<i64> for &'a u8
type Output = <u8 as Shl<i64>>::Output
impl<'a> Shl<i64> for &'a u16
type Output = <u16 as Shl<i64>>::Output
impl<'a> Shl<i64> for &'a u32
type Output = <u32 as Shl<i64>>::Output
impl<'a> Shl<i64> for &'a u64
type Output = <u64 as Shl<i64>>::Output
impl<'a> Shl<i64> for &'a u128
type Output = <u128 as Shl<i64>>::Output
impl<'a> Shl<i64> for &'a usize
type Output = <usize as Shl<i64>>::Output
impl<'a> Shl<i128> for &'a i8
type Output = <i8 as Shl<i128>>::Output
impl<'a> Shl<i128> for &'a i16
type Output = <i16 as Shl<i128>>::Output
impl<'a> Shl<i128> for &'a i32
type Output = <i32 as Shl<i128>>::Output
impl<'a> Shl<i128> for &'a i64
type Output = <i64 as Shl<i128>>::Output
impl<'a> Shl<i128> for &'a i128
type Output = <i128 as Shl>::Output
impl<'a> Shl<i128> for &'a isize
type Output = <isize as Shl<i128>>::Output
impl<'a> Shl<i128> for &'a u8
type Output = <u8 as Shl<i128>>::Output
impl<'a> Shl<i128> for &'a u16
type Output = <u16 as Shl<i128>>::Output
impl<'a> Shl<i128> for &'a u32
type Output = <u32 as Shl<i128>>::Output
impl<'a> Shl<i128> for &'a u64
type Output = <u64 as Shl<i128>>::Output
impl<'a> Shl<i128> for &'a u128
type Output = <u128 as Shl<i128>>::Output
impl<'a> Shl<i128> for &'a usize
type Output = <usize as Shl<i128>>::Output
impl<'a> Shl<isize> for &'a i8
type Output = <i8 as Shl<isize>>::Output
impl<'a> Shl<isize> for &'a i16
type Output = <i16 as Shl<isize>>::Output
impl<'a> Shl<isize> for &'a i32
type Output = <i32 as Shl<isize>>::Output
impl<'a> Shl<isize> for &'a i64
type Output = <i64 as Shl<isize>>::Output
impl<'a> Shl<isize> for &'a i128
type Output = <i128 as Shl<isize>>::Output
impl<'a> Shl<isize> for &'a isize
type Output = <isize as Shl>::Output
impl<'a> Shl<isize> for &'a u8
type Output = <u8 as Shl<isize>>::Output
impl<'a> Shl<isize> for &'a u16
type Output = <u16 as Shl<isize>>::Output
impl<'a> Shl<isize> for &'a u32
type Output = <u32 as Shl<isize>>::Output
impl<'a> Shl<isize> for &'a u64
type Output = <u64 as Shl<isize>>::Output
impl<'a> Shl<isize> for &'a u128
type Output = <u128 as Shl<isize>>::Output
impl<'a> Shl<isize> for &'a usize
type Output = <usize as Shl<isize>>::Output
impl<'a> Shl<u8> for &'a i8
type Output = <i8 as Shl<u8>>::Output
impl<'a> Shl<u8> for &'a i16
type Output = <i16 as Shl<u8>>::Output
impl<'a> Shl<u8> for &'a i32
type Output = <i32 as Shl<u8>>::Output
impl<'a> Shl<u8> for &'a i64
type Output = <i64 as Shl<u8>>::Output
impl<'a> Shl<u8> for &'a i128
type Output = <i128 as Shl<u8>>::Output
impl<'a> Shl<u8> for &'a isize
type Output = <isize as Shl<u8>>::Output
impl<'a> Shl<u8> for &'a u8
type Output = <u8 as Shl>::Output
impl<'a> Shl<u8> for &'a u16
type Output = <u16 as Shl<u8>>::Output
impl<'a> Shl<u8> for &'a u32
type Output = <u32 as Shl<u8>>::Output
impl<'a> Shl<u8> for &'a u64
type Output = <u64 as Shl<u8>>::Output
impl<'a> Shl<u8> for &'a u128
type Output = <u128 as Shl<u8>>::Output
impl<'a> Shl<u8> for &'a usize
type Output = <usize as Shl<u8>>::Output
impl<'a> Shl<u16> for &'a i8
type Output = <i8 as Shl<u16>>::Output
impl<'a> Shl<u16> for &'a i16
type Output = <i16 as Shl<u16>>::Output
impl<'a> Shl<u16> for &'a i32
type Output = <i32 as Shl<u16>>::Output
impl<'a> Shl<u16> for &'a i64
type Output = <i64 as Shl<u16>>::Output
impl<'a> Shl<u16> for &'a i128
type Output = <i128 as Shl<u16>>::Output
impl<'a> Shl<u16> for &'a isize
type Output = <isize as Shl<u16>>::Output
impl<'a> Shl<u16> for &'a u8
type Output = <u8 as Shl<u16>>::Output
impl<'a> Shl<u16> for &'a u16
type Output = <u16 as Shl>::Output
impl<'a> Shl<u16> for &'a u32
type Output = <u32 as Shl<u16>>::Output
impl<'a> Shl<u16> for &'a u64
type Output = <u64 as Shl<u16>>::Output
impl<'a> Shl<u16> for &'a u128
type Output = <u128 as Shl<u16>>::Output
impl<'a> Shl<u16> for &'a usize
type Output = <usize as Shl<u16>>::Output
impl<'a> Shl<u32> for &'a i8
type Output = <i8 as Shl<u32>>::Output
impl<'a> Shl<u32> for &'a i16
type Output = <i16 as Shl<u32>>::Output
impl<'a> Shl<u32> for &'a i32
type Output = <i32 as Shl<u32>>::Output
impl<'a> Shl<u32> for &'a i64
type Output = <i64 as Shl<u32>>::Output
impl<'a> Shl<u32> for &'a i128
type Output = <i128 as Shl<u32>>::Output
impl<'a> Shl<u32> for &'a isize
type Output = <isize as Shl<u32>>::Output
impl<'a> Shl<u32> for &'a u8
type Output = <u8 as Shl<u32>>::Output
impl<'a> Shl<u32> for &'a u16
type Output = <u16 as Shl<u32>>::Output
impl<'a> Shl<u32> for &'a u32
type Output = <u32 as Shl>::Output
impl<'a> Shl<u32> for &'a u64
type Output = <u64 as Shl<u32>>::Output
impl<'a> Shl<u32> for &'a u128
type Output = <u128 as Shl<u32>>::Output
impl<'a> Shl<u32> for &'a usize
type Output = <usize as Shl<u32>>::Output
impl<'a> Shl<u64> for &'a i8
type Output = <i8 as Shl<u64>>::Output
impl<'a> Shl<u64> for &'a i16
type Output = <i16 as Shl<u64>>::Output
impl<'a> Shl<u64> for &'a i32
type Output = <i32 as Shl<u64>>::Output
impl<'a> Shl<u64> for &'a i64
type Output = <i64 as Shl<u64>>::Output
impl<'a> Shl<u64> for &'a i128
type Output = <i128 as Shl<u64>>::Output
impl<'a> Shl<u64> for &'a isize
type Output = <isize as Shl<u64>>::Output
impl<'a> Shl<u64> for &'a u8
type Output = <u8 as Shl<u64>>::Output
impl<'a> Shl<u64> for &'a u16
type Output = <u16 as Shl<u64>>::Output
impl<'a> Shl<u64> for &'a u32
type Output = <u32 as Shl<u64>>::Output
impl<'a> Shl<u64> for &'a u64
type Output = <u64 as Shl>::Output
impl<'a> Shl<u64> for &'a u128
type Output = <u128 as Shl<u64>>::Output
impl<'a> Shl<u64> for &'a usize
type Output = <usize as Shl<u64>>::Output
impl<'a> Shl<u128> for &'a i8
type Output = <i8 as Shl<u128>>::Output
impl<'a> Shl<u128> for &'a i16
type Output = <i16 as Shl<u128>>::Output
impl<'a> Shl<u128> for &'a i32
type Output = <i32 as Shl<u128>>::Output
impl<'a> Shl<u128> for &'a i64
type Output = <i64 as Shl<u128>>::Output
impl<'a> Shl<u128> for &'a i128
type Output = <i128 as Shl<u128>>::Output
impl<'a> Shl<u128> for &'a isize
type Output = <isize as Shl<u128>>::Output
impl<'a> Shl<u128> for &'a u8
type Output = <u8 as Shl<u128>>::Output
impl<'a> Shl<u128> for &'a u16
type Output = <u16 as Shl<u128>>::Output
impl<'a> Shl<u128> for &'a u32
type Output = <u32 as Shl<u128>>::Output
impl<'a> Shl<u128> for &'a u64
type Output = <u64 as Shl<u128>>::Output
impl<'a> Shl<u128> for &'a u128
type Output = <u128 as Shl>::Output
impl<'a> Shl<u128> for &'a usize
type Output = <usize as Shl<u128>>::Output
impl<'a> Shl<usize> for &'a i8
type Output = <i8 as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a i16
type Output = <i16 as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a i32
type Output = <i32 as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a i64
type Output = <i64 as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a i128
type Output = <i128 as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a isize
type Output = <isize as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a u8
type Output = <u8 as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a u16
type Output = <u16 as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a u32
type Output = <u32 as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a u64
type Output = <u64 as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a u128
type Output = <u128 as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a usize
type Output = <usize as Shl>::Output
impl<'a> Shl<usize> for &'a Wrapping<i8>
type Output = <Wrapping<i8> as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a Wrapping<i16>
type Output = <Wrapping<i16> as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a Wrapping<i32>
type Output = <Wrapping<i32> as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a Wrapping<i64>
type Output = <Wrapping<i64> as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a Wrapping<i128>
type Output = <Wrapping<i128> as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a Wrapping<isize>
type Output = <Wrapping<isize> as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a Wrapping<u8>
type Output = <Wrapping<u8> as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a Wrapping<u16>
type Output = <Wrapping<u16> as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a Wrapping<u32>
type Output = <Wrapping<u32> as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a Wrapping<u64>
type Output = <Wrapping<u64> as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a Wrapping<u128>
type Output = <Wrapping<u128> as Shl<usize>>::Output
impl<'a> Shl<usize> for &'a Wrapping<usize>
type Output = <Wrapping<usize> as Shl<usize>>::Output
impl<'lhs, 'rhs, T, const LANES: usize> Shl<&'rhs Simd<T, LANES>> for &'lhs Simd<T, LANES>
where
T: SimdElement,
Simd<T, LANES>: Shl<Output = Simd<T, LANES>>,
LaneCount<LANES>: SupportedLaneCount,
type Output = Simd<T, LANES>
impl<T, const LANES: usize> Shl<&Simd<T, LANES>> for Simd<T, LANES>
where
T: SimdElement,
Simd<T, LANES>: Shl<Output = Simd<T, LANES>>,
LaneCount<LANES>: SupportedLaneCount,
type Output = Simd<T, LANES>
impl<T, const LANES: usize> Shl<Simd<T, LANES>> for &Simd<T, LANES>
where
T: SimdElement,
Simd<T, LANES>: Shl<Output = Simd<T, LANES>>,
LaneCount<LANES>: SupportedLaneCount,
type Output = Simd<T, LANES>
impl<const N: usize> Shl for Simd<i8, N>
where
i8: SimdElement,
LaneCount<N>: SupportedLaneCount,
type Output = Simd<i8, N>
impl<const N: usize> Shl for Simd<i16, N>
where
i16: SimdElement,
LaneCount<N>: SupportedLaneCount,
type Output = Simd<i16, N>
impl<const N: usize> Shl for Simd<i32, N>
where
i32: SimdElement,
LaneCount<N>: SupportedLaneCount,
type Output = Simd<i32, N>
impl<const N: usize> Shl for Simd<i64, N>
where
i64: SimdElement,
LaneCount<N>: SupportedLaneCount,
type Output = Simd<i64, N>
impl<const N: usize> Shl for Simd<isize, N>
where
isize: SimdElement,
LaneCount<N>: SupportedLaneCount,
type Output = Simd<isize, N>
impl<const N: usize> Shl for Simd<u8, N>
where
u8: SimdElement,
LaneCount<N>: SupportedLaneCount,
type Output = Simd<u8, N>
impl<const N: usize> Shl for Simd<u16, N>
where
u16: SimdElement,
LaneCount<N>: SupportedLaneCount,
type Output = Simd<u16, N>
impl<const N: usize> Shl for Simd<u32, N>
where
u32: SimdElement,
LaneCount<N>: SupportedLaneCount,
type Output = Simd<u32, N>
impl<const N: usize> Shl for Simd<u64, N>
where
u64: SimdElement,
LaneCount<N>: SupportedLaneCount,
type Output = Simd<u64, N>
impl<const N: usize> Shl for Simd<usize, N>
where
usize: SimdElement,
LaneCount<N>: SupportedLaneCount,
type Output = Simd<usize, N>
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/ops/trait.Shl.html