simple-squiggle

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

cube.js (381B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.cubeDocs = void 0;
      7 var cubeDocs = {
      8   name: 'cube',
      9   category: 'Arithmetic',
     10   syntax: ['cube(x)'],
     11   description: 'Compute the cube of a value. The cube of x is x * x * x.',
     12   examples: ['cube(2)', '2^3', '2 * 2 * 2'],
     13   seealso: ['multiply', 'square', 'pow']
     14 };
     15 exports.cubeDocs = cubeDocs;