simple-squiggle

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

and.js (420B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.andDocs = void 0;
      7 var andDocs = {
      8   name: 'and',
      9   category: 'Logical',
     10   syntax: ['x and y', 'and(x, y)'],
     11   description: 'Logical and. Test whether two values are both defined with a nonzero/nonempty value.',
     12   examples: ['true and false', 'true and true', '2 and 4'],
     13   seealso: ['not', 'or', 'xor']
     14 };
     15 exports.andDocs = andDocs;