pub struct AlignedCoefficients { /* private fields */ }Expand description
RAII wrapper for aligned coefficient arrays
Implementations§
Source§impl AlignedCoefficients
impl AlignedCoefficients
Sourcepub fn as_mut_slice(&mut self) -> &mut [f64]
pub fn as_mut_slice(&mut self) -> &mut [f64]
Get mutable access to the underlying data
Sourcepub fn into_boxed_slice(self) -> Box<[f64]>
pub fn into_boxed_slice(self) -> Box<[f64]>
Convert to boxed slice
Sourcepub fn is_simd_aligned(&self) -> bool
pub fn is_simd_aligned(&self) -> bool
Check if the memory is properly aligned for SIMD
Auto Trait Implementations§
impl Freeze for AlignedCoefficients
impl RefUnwindSafe for AlignedCoefficients
impl Send for AlignedCoefficients
impl Sync for AlignedCoefficients
impl Unpin for AlignedCoefficients
impl UnwindSafe for AlignedCoefficients
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