simple-squiggle

A restricted subset of Squiggle
Log | Files | Refs | README

rightLogShift.js (340B)


      1 export var rightLogShiftDocs = {
      2   name: 'rightLogShift',
      3   category: 'Bitwise',
      4   syntax: ['x >>> y', 'rightLogShift(x, y)'],
      5   description: 'Bitwise right logical shift of a value x by y number of bits.',
      6   examples: ['8 >>> 1', '4 << 1', '-12 >>> 2'],
      7   seealso: ['bitAnd', 'bitNot', 'bitOr', 'bitXor', 'leftShift', 'rightArithShift']
      8 };