cube.js 252 B

12345678
  1. export var cubeDocs = {
  2. name: 'cube',
  3. category: 'Arithmetic',
  4. syntax: ['cube(x)'],
  5. description: 'Compute the cube of a value. The cube of x is x * x * x.',
  6. examples: ['cube(2)', '2^3', '2 * 2 * 2'],
  7. seealso: ['multiply', 'square', 'pow']
  8. };