Trait spade::SpadeNum [] [src]

pub trait SpadeNum: Signed + Clone + Debug + PartialOrd { }

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.

Implementors