[][src]Trait polars::chunked_array::builder::AlignedAlloc

pub trait AlignedAlloc<T> {
    fn with_capacity_aligned(size: usize) -> Vec<T>;
}

Required methods

Loading content...

Implementations on Foreign Types

impl<T> AlignedAlloc<T> for Vec<T>[src]

fn with_capacity_aligned(size: usize) -> Vec<T>[src]

Create a new Vec where first bytes memory address has an alignment of 64 bytes, as described by arrow spec. Read more: https://github.com/rust-ndarray/ndarray/issues/771

Loading content...

Implementors

Loading content...