Added LT, GT, LTE, and GTE functions, and big test coverage

This commit is contained in:
Ava Hahn 2023-03-07 22:01:01 -08:00
parent 5d89c6b684
commit c74d6f5ddf
Signed by untrusted user who does not match committer: affine
GPG key ID: 3A4645B8CF806069
6 changed files with 468 additions and 11 deletions

View file

@ -16,7 +16,7 @@
*/
use std::fmt;
use std::marker::PhantomData;
use std::ops::{Add, Sub, Mul, Div, Index};
use std::ops::{Add, Div, Index, Mul, Sub};
// Container
#[derive(Debug, Default)]
@ -321,7 +321,6 @@ impl Sub<Ctr> for Ctr {
}
}
impl Mul<Ctr> for Ctr {
type Output = Ctr;