simple-squiggle

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

leftShift.js (460B)


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