simple-squiggle

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

not.js (383B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.notDocs = void 0;
      7 var notDocs = {
      8   name: 'not',
      9   category: 'Logical',
     10   syntax: ['not x', 'not(x)'],
     11   description: 'Logical not. Flips the boolean value of given argument.',
     12   examples: ['not true', 'not false', 'not 2', 'not 0'],
     13   seealso: ['and', 'or', 'xor']
     14 };
     15 exports.notDocs = notDocs;