simple-squiggle

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

rightLogShift.js (496B)


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