pub trait Sign {
    fn sign(&self) -> f32;

    fn is_sign_positive(&self) -> bool { ... }
    fn is_sign_negative(&self) -> bool { ... }
}
Expand description

A trait for values that can return a sign.

Required Methods

Returns the sign of the value.

Provided Methods

Returns whether the value is positive.

Returns whether the value is negative.

Implementors