rightArithShift.js 506 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.rightArithShiftDocs = void 0;
  6. var rightArithShiftDocs = {
  7. name: 'rightArithShift',
  8. category: 'Bitwise',
  9. syntax: ['x >> y', 'rightArithShift(x, y)'],
  10. description: 'Bitwise right arithmetic shift of a value x by y number of bits.',
  11. examples: ['8 >> 1', '4 << 1', '-12 >> 2'],
  12. seealso: ['bitAnd', 'bitNot', 'bitOr', 'bitXor', 'leftShift', 'rightLogShift']
  13. };
  14. exports.rightArithShiftDocs = rightArithShiftDocs;