ceil.js 447 B

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