pub struct u64x4(/* private fields */);Implementations§
Source§impl u64x4
impl u64x4
pub fn new(a: u64, b: u64, c: u64, d: u64) -> Self
pub fn rotate_right(&mut self, ii: Self) -> Self
pub fn from_slice_unaligned(xs: &[u64]) -> Self
pub fn splat(x: u64) -> Self
pub fn write_to_slice_unaligned(self, xs: &mut [u64])
pub fn replace(self, i: usize, v: u64) -> Self
pub fn extract(self, i: usize) -> u64
Trait Implementations§
Source§impl AddAssign for u64x4
impl AddAssign for u64x4
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moreSource§impl BitXorAssign for u64x4
impl BitXorAssign for u64x4
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^= operation. Read moreSource§impl RotateWordsRight for u64x4
impl RotateWordsRight for u64x4
Source§impl SplatRotateRight for u64x4
impl SplatRotateRight for u64x4
impl Copy for u64x4
Auto Trait Implementations§
impl Freeze for u64x4
impl RefUnwindSafe for u64x4
impl Send for u64x4
impl Sync for u64x4
impl Unpin for u64x4
impl UnwindSafe for u64x4
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more