logo
pub trait X2BasicInterface: X2NominalInterface {
    fn make(_0: Self::Scalar, _1: Self::Scalar) -> Self;

    fn make_nan() -> Self { ... }
    fn make_default() -> Self { ... }
}
Expand description

Standard interface of vector X2. Implements nominal interface, extending it by constructor make.

Required Methods

Constructor.

Provided Methods

Make an instance filling fields with NaN.

Make an instance filling fields with default values.

Implementations on Foreign Types

Implementors