コード例 #1
0
ファイル: BigInteger.cs プロジェクト: bugbit/algebra
 public static BigInteger operator >>(BigInteger a, int b)
 {
     return(BigMath.ShiftRight(a, b));
 }