pub trait AlignedAllocable: Zero + Clone + Copy + Sized {
    // Required method
    unsafe fn alloc(n: usize) -> *mut Self;
}
Expand description

Allocate SIMD-aligned memory of Real/Complex type

Required Methods§

source

unsafe fn alloc(n: usize) -> *mut Self

Allocate SIMD-aligned memory

Implementations on Foreign Types§

source§

impl AlignedAllocable for f32

source§

unsafe fn alloc(n: usize) -> *mut Self

source§

impl AlignedAllocable for f64

source§

unsafe fn alloc(n: usize) -> *mut Self

Implementors§