pub trait DiscretizableVector {
    fn ceil(&self) -> Vec<i32>;
fn floor(&self) -> Vec<i32>; }

Required methods

Ceil all elements of a vector.

Floor all elements of a vector.

Implementations on Foreign Types

Implementors