$$ \gdef\pd#1#2{\frac{\partial #1}{\partial #2}} \gdef\d#1{\, \mathrm{d}#1} \gdef\dx{\d{x}} \gdef\tr#1{\operatorname{tr} (#1)} $$ $$ \gdef\norm#1{\left \lVert #1 \right\rVert} \gdef\seminorm#1{| #1 |} $$ $$ \gdef\vec#1{\mathbf{\boldsymbol{#1}}} \gdef\dvec#1{\bar{\vec #1}} $$
pub trait TriDimAllocator<T, D1, D2, D3>: BiDimAllocator<T, D1, D2> + BiDimAllocator<T, D1, D3> + BiDimAllocator<T, D2, D3>where
    T: Scalar,
    D1: DimName,
    D2: DimName,
    D3: DimName,{ }
Expand description

An allocator for three dimensions.

Implementations on Foreign Types§

source§

impl<T, D1, D2, D3> TriDimAllocator<T, D1, D2, D3> for DefaultAllocatorwhere T: Scalar, D1: DimName, D2: DimName, D3: DimName, DefaultAllocator: BiDimAllocator<T, D1, D2> + BiDimAllocator<T, D1, D3> + BiDimAllocator<T, D2, D3>,

Implementors§