i.js 402 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.iDocs = void 0;
  6. var iDocs = {
  7. name: 'i',
  8. category: 'Constants',
  9. syntax: ['i'],
  10. description: 'Imaginary unit, defined as i*i=-1. A complex number is described as a + b*i, where a is the real part, and b is the imaginary part.',
  11. examples: ['i', 'i * i', 'sqrt(-1)'],
  12. seealso: []
  13. };
  14. exports.iDocs = iDocs;