ceil.js 318 B

12345678
  1. export var ceilDocs = {
  2. name: 'ceil',
  3. category: 'Arithmetic',
  4. syntax: ['ceil(x)'],
  5. description: 'Round a value towards plus infinity. If x is complex, both real and imaginary part are rounded towards plus infinity.',
  6. examples: ['ceil(3.2)', 'ceil(3.8)', 'ceil(-4.2)'],
  7. seealso: ['floor', 'fix', 'round']
  8. };