Exemple #1
0
 public static bool operator <(Rational ALhs, float ARhs) => ALhs.CompareTo(ARhs) < 0;
Exemple #2
0
 public static bool operator >=(Rational ALhs, Rational ARhs) => ALhs.CompareTo(ARhs) >= 0;
Exemple #3
0
 public static bool operator <=(Rational ALhs, double ARhs) => ALhs.CompareTo(ARhs) <= 0;
Exemple #4
0
 public static bool operator !=(Rational ALhs, Rational ARhs) => !ALhs.Equals(ARhs);
Exemple #5
0
 public static bool operator <(StreamTime ALhs, float ARhs) => ALhs.CompareTo(ARhs) < 0;
Exemple #6
0
 public static bool operator <=(StreamTime ALhs, double ARhs) => ALhs.CompareTo(ARhs) <= 0;
Exemple #7
0
 public static bool operator >=(StreamTime ALhs, StreamTime ARhs)
 => ALhs.CompareTo(ARhs) >= 0;
Exemple #8
0
 public static bool operator !=(StreamTime ALhs, StreamTime ARhs) => !ALhs.Equals(ARhs);