@@ -2330,12 +2330,12 @@ public static object Add(UInt64 x, UInt64 y) {
23302330 }
23312331
23322332 [ SpecialName ]
2333- public static object Add ( UInt64 x , Int64 y ) {
2333+ public static object Add ( UInt64 x , BigInteger y ) {
23342334 return BigIntegerOps . Add ( ( BigInteger ) x , ( BigInteger ) y ) ;
23352335 }
23362336
23372337 [ SpecialName ]
2338- public static object Add ( Int64 x , UInt64 y ) {
2338+ public static object Add ( BigInteger x , UInt64 y ) {
23392339 return BigIntegerOps . Add ( ( BigInteger ) x , ( BigInteger ) y ) ;
23402340 }
23412341
@@ -2349,12 +2349,12 @@ public static object Subtract(UInt64 x, UInt64 y) {
23492349 }
23502350
23512351 [ SpecialName ]
2352- public static object Subtract ( UInt64 x , Int64 y ) {
2352+ public static object Subtract ( UInt64 x , BigInteger y ) {
23532353 return BigIntegerOps . Subtract ( ( BigInteger ) x , ( BigInteger ) y ) ;
23542354 }
23552355
23562356 [ SpecialName ]
2357- public static object Subtract ( Int64 x , UInt64 y ) {
2357+ public static object Subtract ( BigInteger x , UInt64 y ) {
23582358 return BigIntegerOps . Subtract ( ( BigInteger ) x , ( BigInteger ) y ) ;
23592359 }
23602360
@@ -2368,12 +2368,12 @@ public static object Multiply(UInt64 x, UInt64 y) {
23682368 }
23692369
23702370 [ SpecialName ]
2371- public static object Multiply ( UInt64 x , Int64 y ) {
2371+ public static object Multiply ( UInt64 x , BigInteger y ) {
23722372 return BigIntegerOps . Multiply ( ( BigInteger ) x , ( BigInteger ) y ) ;
23732373 }
23742374
23752375 [ SpecialName ]
2376- public static object Multiply ( Int64 x , UInt64 y ) {
2376+ public static object Multiply ( BigInteger x , UInt64 y ) {
23772377 return BigIntegerOps . Multiply ( ( BigInteger ) x , ( BigInteger ) y ) ;
23782378 }
23792379
@@ -2383,12 +2383,12 @@ public static double TrueDivide(UInt64 x, UInt64 y) {
23832383 }
23842384
23852385 [ SpecialName ]
2386- public static double TrueDivide ( UInt64 x , Int64 y ) {
2386+ public static double TrueDivide ( UInt64 x , BigInteger y ) {
23872387 return BigIntegerOps . TrueDivide ( ( BigInteger ) x , ( BigInteger ) y ) ;
23882388 }
23892389
23902390 [ SpecialName ]
2391- public static double TrueDivide ( Int64 x , UInt64 y ) {
2391+ public static double TrueDivide ( BigInteger x , UInt64 y ) {
23922392 return BigIntegerOps . TrueDivide ( ( BigInteger ) x , ( BigInteger ) y ) ;
23932393 }
23942394
@@ -2398,12 +2398,12 @@ public static UInt64 FloorDivide(UInt64 x, UInt64 y) {
23982398 }
23992399
24002400 [ SpecialName ]
2401- public static object FloorDivide ( UInt64 x , Int64 y ) {
2401+ public static object FloorDivide ( UInt64 x , BigInteger y ) {
24022402 return BigIntegerOps . FloorDivide ( ( BigInteger ) x , ( BigInteger ) y ) ;
24032403 }
24042404
24052405 [ SpecialName ]
2406- public static object FloorDivide ( Int64 x , UInt64 y ) {
2406+ public static object FloorDivide ( BigInteger x , UInt64 y ) {
24072407 return BigIntegerOps . FloorDivide ( ( BigInteger ) x , ( BigInteger ) y ) ;
24082408 }
24092409
@@ -2413,12 +2413,12 @@ public static UInt64 Mod(UInt64 x, UInt64 y) {
24132413 }
24142414
24152415 [ SpecialName ]
2416- public static BigInteger Mod ( UInt64 x , Int64 y ) {
2416+ public static BigInteger Mod ( UInt64 x , BigInteger y ) {
24172417 return BigIntegerOps . Mod ( ( BigInteger ) x , ( BigInteger ) y ) ;
24182418 }
24192419
24202420 [ SpecialName ]
2421- public static BigInteger Mod ( Int64 x , UInt64 y ) {
2421+ public static BigInteger Mod ( BigInteger x , UInt64 y ) {
24222422 return BigIntegerOps . Mod ( ( BigInteger ) x , ( BigInteger ) y ) ;
24232423 }
24242424
@@ -2428,12 +2428,12 @@ public static object Power(UInt64 x, UInt64 y) {
24282428 }
24292429
24302430 [ SpecialName ]
2431- public static object Power ( UInt64 x , Int64 y ) {
2431+ public static object Power ( UInt64 x , BigInteger y ) {
24322432 return BigIntegerOps . Power ( ( BigInteger ) x , ( BigInteger ) y ) ;
24332433 }
24342434
24352435 [ SpecialName ]
2436- public static object Power ( Int64 x , UInt64 y ) {
2436+ public static object Power ( BigInteger x , UInt64 y ) {
24372437 return BigIntegerOps . Power ( ( BigInteger ) x , ( BigInteger ) y ) ;
24382438 }
24392439
@@ -2457,12 +2457,12 @@ public static UInt64 BitwiseAnd(UInt64 x, UInt64 y) {
24572457 }
24582458
24592459 [ SpecialName ]
2460- public static BigInteger BitwiseAnd ( UInt64 x , Int64 y ) {
2460+ public static BigInteger BitwiseAnd ( UInt64 x , BigInteger y ) {
24612461 return BigIntegerOps . BitwiseAnd ( ( BigInteger ) x , ( BigInteger ) y ) ;
24622462 }
24632463
24642464 [ SpecialName ]
2465- public static BigInteger BitwiseAnd ( Int64 x , UInt64 y ) {
2465+ public static BigInteger BitwiseAnd ( BigInteger x , UInt64 y ) {
24662466 return BigIntegerOps . BitwiseAnd ( ( BigInteger ) x , ( BigInteger ) y ) ;
24672467 }
24682468
@@ -2472,12 +2472,12 @@ public static UInt64 BitwiseOr(UInt64 x, UInt64 y) {
24722472 }
24732473
24742474 [ SpecialName ]
2475- public static BigInteger BitwiseOr ( UInt64 x , Int64 y ) {
2475+ public static BigInteger BitwiseOr ( UInt64 x , BigInteger y ) {
24762476 return BigIntegerOps . BitwiseOr ( ( BigInteger ) x , ( BigInteger ) y ) ;
24772477 }
24782478
24792479 [ SpecialName ]
2480- public static BigInteger BitwiseOr ( Int64 x , UInt64 y ) {
2480+ public static BigInteger BitwiseOr ( BigInteger x , UInt64 y ) {
24812481 return BigIntegerOps . BitwiseOr ( ( BigInteger ) x , ( BigInteger ) y ) ;
24822482 }
24832483
@@ -2487,12 +2487,12 @@ public static UInt64 ExclusiveOr(UInt64 x, UInt64 y) {
24872487 }
24882488
24892489 [ SpecialName ]
2490- public static BigInteger ExclusiveOr ( UInt64 x , Int64 y ) {
2490+ public static BigInteger ExclusiveOr ( UInt64 x , BigInteger y ) {
24912491 return BigIntegerOps . ExclusiveOr ( ( BigInteger ) x , ( BigInteger ) y ) ;
24922492 }
24932493
24942494 [ SpecialName ]
2495- public static BigInteger ExclusiveOr ( Int64 x , UInt64 y ) {
2495+ public static BigInteger ExclusiveOr ( BigInteger x , UInt64 y ) {
24962496 return BigIntegerOps . ExclusiveOr ( ( BigInteger ) x , ( BigInteger ) y ) ;
24972497 }
24982498
@@ -2503,27 +2503,27 @@ public static BigInteger ExclusiveOr(Int64 x, UInt64 y) {
25032503 [ SpecialName ]
25042504 public static bool LessThan ( UInt64 x , UInt64 y ) => x < y ;
25052505 [ SpecialName ]
2506- public static bool LessThan ( UInt64 x , Int64 y ) => BigIntegerOps . LessThan ( ( BigInteger ) x , ( BigInteger ) y ) ;
2506+ public static bool LessThan ( UInt64 x , BigInteger y ) => BigIntegerOps . LessThan ( ( BigInteger ) x , ( BigInteger ) y ) ;
25072507 [ SpecialName ]
25082508 public static bool LessThanOrEqual ( UInt64 x , UInt64 y ) => x <= y ;
25092509 [ SpecialName ]
2510- public static bool LessThanOrEqual ( UInt64 x , Int64 y ) => BigIntegerOps . LessThanOrEqual ( ( BigInteger ) x , ( BigInteger ) y ) ;
2510+ public static bool LessThanOrEqual ( UInt64 x , BigInteger y ) => BigIntegerOps . LessThanOrEqual ( ( BigInteger ) x , ( BigInteger ) y ) ;
25112511 [ SpecialName ]
25122512 public static bool GreaterThan ( UInt64 x , UInt64 y ) => x > y ;
25132513 [ SpecialName ]
2514- public static bool GreaterThan ( UInt64 x , Int64 y ) => BigIntegerOps . GreaterThan ( ( BigInteger ) x , ( BigInteger ) y ) ;
2514+ public static bool GreaterThan ( UInt64 x , BigInteger y ) => BigIntegerOps . GreaterThan ( ( BigInteger ) x , ( BigInteger ) y ) ;
25152515 [ SpecialName ]
25162516 public static bool GreaterThanOrEqual ( UInt64 x , UInt64 y ) => x >= y ;
25172517 [ SpecialName ]
2518- public static bool GreaterThanOrEqual ( UInt64 x , Int64 y ) => BigIntegerOps . GreaterThanOrEqual ( ( BigInteger ) x , ( BigInteger ) y ) ;
2518+ public static bool GreaterThanOrEqual ( UInt64 x , BigInteger y ) => BigIntegerOps . GreaterThanOrEqual ( ( BigInteger ) x , ( BigInteger ) y ) ;
25192519 [ SpecialName ]
25202520 public static bool Equals ( UInt64 x , UInt64 y ) => x == y ;
25212521 [ SpecialName ]
2522- public static bool Equals ( UInt64 x , Int64 y ) => BigIntegerOps . Equals ( ( BigInteger ) x , ( BigInteger ) y ) ;
2522+ public static bool Equals ( UInt64 x , BigInteger y ) => BigIntegerOps . Equals ( ( BigInteger ) x , ( BigInteger ) y ) ;
25232523 [ SpecialName ]
25242524 public static bool NotEquals ( UInt64 x , UInt64 y ) => x != y ;
25252525 [ SpecialName ]
2526- public static bool NotEquals ( UInt64 x , Int64 y ) => BigIntegerOps . NotEquals ( ( BigInteger ) x , ( BigInteger ) y ) ;
2526+ public static bool NotEquals ( UInt64 x , BigInteger y ) => BigIntegerOps . NotEquals ( ( BigInteger ) x , ( BigInteger ) y ) ;
25272527
25282528 #endregion
25292529
0 commit comments