Exemplo n.º 1
0
 public static LiftedRational Min(LiftedRational r1, LiftedRational r2)
 {
     return(r1 < r2 ? r1 : r2);
 }
Exemplo n.º 2
0
 public static LiftedRational Max(LiftedRational r1, LiftedRational r2)
 {
     return(r1 > r2 ? r1 : r2);
 }