rightLogShift.js 496 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.rightLogShiftDocs = void 0;
  6. var rightLogShiftDocs = {
  7. name: 'rightLogShift',
  8. category: 'Bitwise',
  9. syntax: ['x >>> y', 'rightLogShift(x, y)'],
  10. description: 'Bitwise right logical 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', 'rightArithShift']
  13. };
  14. exports.rightLogShiftDocs = rightLogShiftDocs;