simple-squiggle

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

abs.js (319B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.absDocs = void 0;
      7 var absDocs = {
      8   name: 'abs',
      9   category: 'Arithmetic',
     10   syntax: ['abs(x)'],
     11   description: 'Compute the absolute value.',
     12   examples: ['abs(3.5)', 'abs(-4.2)'],
     13   seealso: ['sign']
     14 };
     15 exports.absDocs = absDocs;