simple-squiggle

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

ceil.js (447B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.ceilDocs = void 0;
      7 var ceilDocs = {
      8   name: 'ceil',
      9   category: 'Arithmetic',
     10   syntax: ['ceil(x)'],
     11   description: 'Round a value towards plus infinity. If x is complex, both real and imaginary part are rounded towards plus infinity.',
     12   examples: ['ceil(3.2)', 'ceil(3.8)', 'ceil(-4.2)'],
     13   seealso: ['floor', 'fix', 'round']
     14 };
     15 exports.ceilDocs = ceilDocs;