Skip to main content

Support

Trait Support 

Source
pub trait Support<const N: usize> {
    // Required methods
    fn num_points(&self) -> usize;
    fn point(&self, i: usize) -> [f64; N];
}

Required Methods§

Source

fn num_points(&self) -> usize

Source

fn point(&self, i: usize) -> [f64; N]

Implementors§

Source§

impl<const N: usize> Support<N> for Uniform<N>