pub trait Zero {
    fn zero() -> Self;
}
Expand description

This trait is necessary so that we can define zero for types outside this crate. It calls the num_traits::Zero trait where possible.

Required Methods

Implementors