12345678 |
- export var bignumberDocs = {
- name: 'bignumber',
- category: 'Construction',
- syntax: ['bignumber(x)'],
- description: 'Create a big number from a number or string.',
- examples: ['0.1 + 0.2', 'bignumber(0.1) + bignumber(0.2)', 'bignumber("7.2")', 'bignumber("7.2e500")', 'bignumber([0.1, 0.2, 0.3])'],
- seealso: ['boolean', 'complex', 'fraction', 'index', 'matrix', 'string', 'unit']
- };
|