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