Trait FunnelShift

pub trait FunnelShift: Copy + 'static

Required Methods

unsafe fn unchecked_funnel_shl(self, right: 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, right: 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