UNPKG

460 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.leftShiftDocs = void 0;
7var 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};
15exports.leftShiftDocs = leftShiftDocs;
\No newline at end of file