예제 #1
0
파일: UInt128.x.cs 프로젝트: 0xCM/arrows
 public static Vec128 <ulong> ToVector128(this UInt128 src)
 => src;
예제 #2
0
파일: UMul.cs 프로젝트: 0xCM/arrows
 public static unsafe ref UInt128 mul(ulong lhs, ulong rhs, out UInt128 dst)
 {
     dst = 0;
     mul(lhs, rhs, out dst.lo, out dst.hi);
     return(ref dst);
 }
예제 #3
0
파일: BitString.x.cs 프로젝트: 0xCM/arrows
 public static BitString ToBitString(this UInt128 src)
 => BitString.FromScalar(src.hi) + BitString.FromScalar(src.lo);