예제 #1
0
파일: F64.cs 프로젝트: suzuke/FixPointCS
 public static F64 Max(F64 a, F64 b)
 {
     return(FromRaw(Fixed64.Max(a.raw, b.raw)));
 }