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

    fn make_nan() -> Self
    where
        Self: Sized
, { ... } fn make_default() -> Self
    where
        Self: Sized
, { ... } }
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