NumberExtensions.cs 227 B

12345678910
  1. namespace Jint.Native.Number.Dtoa
  2. {
  3. public static class NumberExtensions
  4. {
  5. public static long UnsignedShift(this long l, int shift)
  6. {
  7. return (long) ((ulong) l >> shift);
  8. }
  9. }
  10. }