Exemple #1
0
 private static bool _PositiveNotEqual(EnumI4 e, int v)
 {
     return (int)e != v;
 }
Exemple #2
0
 private static bool _PositiveLessThanOrEqual(EnumI4 e, int v)
 {
     return (int)e <= v;
 }
Exemple #3
0
 private static bool _PositiveLessThan(EnumI4 e, int v)
 {
     return (int)e < v;
 }
Exemple #4
0
 private static bool _PositiveGreaterThanOrEqual(EnumI4 e, int v)
 {
     return (int)e >= v;
 }
Exemple #5
0
 private static bool _PositiveGreaterThan(EnumI4 e, int v)
 {
     return (int)e > v;
 }
Exemple #6
0
 private static bool _NegativeEqual(EnumI4 e, int v)
 {
     return (int)e == v;
 }