Added LT, GT, LTE, and GTE functions, and big test coverage
This commit is contained in:
parent
5d89c6b684
commit
c74d6f5ddf
6 changed files with 468 additions and 11 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue