1
2
3
4
5
6
7
#[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Hash, Debug)]
pub enum Sign {
    Negative,
    Zero,
    Positive,
}