Function polars::chunked_array::builder::alloc::allocate_aligned[]

pub fn allocate_aligned<T>(size: usize) -> NonNull<T> where
    T: NativeType
Expand description

Allocates a cache-aligned memory region of size bytes with uninitialized values. This is more performant than using allocate_aligned_zeroed when all bytes will have an unknown or non-zero value and is semantically similar to malloc.