Trait spade::SpadeNum

source ·
pub trait SpadeNum: Signed + Clone + Debug + PartialOrd { }
Expand description

Number types that can be used with spade.

Number types that can be used for spade’s datastructures will need to implement this trait. Can be an integer or floating point type. Note that copy is not necessary to support big integers from the num crate.

Implementations on Foreign Types

Implementors