pub trait SimpleMath { fn half(&self) -> Self; fn double(&self) -> Self; }
Divides by 2 and rounds down
Multiplies by 2