2019-07-20 13:46:31 +02:00

20 lines
438 B
JavaScript

export const 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'
]
}