Trait FunnelShift

trait FunnelShift: Copy + 'static

Required Methods

unsafe fn unchecked_funnel_shl(self: Self, rhs: Self, shift: u32) -> Self

See super::unchecked_funnel_shl; we just need the trait indirection to handle different types since calling intrinsics with generics doesn't work.

unsafe fn unchecked_funnel_shr(self: Self, rhs: Self, shift: u32) -> Self

See super::unchecked_funnel_shr; we just need the trait indirection to handle different types since calling intrinsics with generics doesn't work.

Implementors