Esempio n. 1
0
 private static AgeDistance Closest(AgeDistance x, AgeDistance y)
 {
     return x < y ? x : y;
 }
Esempio n. 2
0
 private static AgeDistance Furthest(AgeDistance x, AgeDistance y)
 {
     return x > y ? x : y;
 }
Esempio n. 3
0
 static bool IsNullOrEmpty(AgeDistance x)
 {
     return x == null || x == Empty;
 }