本文整理汇总了TypeScript中big.js.Big方法的典型用法代码示例。如果您正苦于以下问题:TypeScript js.Big方法的具体用法?TypeScript js.Big怎么用?TypeScript js.Big使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类big.js
的用法示例。
在下文中一共展示了js.Big方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: plusTests
function plusTests() {
0.1 + 0.2; // 0.30000000000000004
const x = new Big(0.1);
const y = x.plus(0.2); // '0.3'
Big(0.7).plus(x).plus(y); // '1'
Big(0.7).add(x).add(y); // '1'
}
示例2: timesTests
function timesTests() {
0.6 * 3; // 1.7999999999999998
const x = new Big(0.6);
const y = x.times(3); // '1.8'
Big('7e+500').times(y); // '1.26e+501'
Big('7e+500').mul(y); // '1.26e+501'
}
示例3: constructorTests
function constructorTests() {
const x = new Big(9); // '9'
const y = new Big(x); // '9'
const d = Big(435.345); // 'new' is optional
const e = Big('435.345'); // 'new' is optional
const a = new Big('5032485723458348569331745.33434346346912144534543');
const b = new Big('4.321e+4'); // '43210'
const c = new Big('-735.0918e-430'); // '-7.350918e-428'
}
示例4: testMultipleConstructors
// see http://mikemcl.github.io/big.js/#faq
// "How can I simultaneously use different decimal places and/or rounding mode settings for different Big numbers?"
function testMultipleConstructors() {
const Big10 = Big();
// Set the decimal places of division operations for each constructor.
Big.DP = 3;
Big10.DP = 10;
const x = Big(5);
const y = Big10(5);
x.div(3); // 1.667
y.div(3); // 1.6666666667
}
示例5: powTests
function powTests() {
Math.pow(0.7, 2); // 0.48999999999999994
const x = new Big(0.7);
x.pow(2); // '0.49'
Big.DP = 20;
Big(3).pow(-2); // '0.11111111111111111111'
new Big(123.456).pow(1000).toString().length; // 5099
new Big(2).pow(1e+6); // Time taken (Node.js): 9 minutes 34 secs.
}
示例6: multipleTypesAccepted
function multipleTypesAccepted(n: number | Big | string) {
const y = Big(n)
.minus(n)
.mod(n)
.plus(n)
.times(n);
y.cmp(n);
y.eq(n);
y.gt(n);
y.gte(n);
y.lt(n);
y.lte(n);
y.div(n);
}
示例7: modTests
function modTests() {
1 % 0.9; // 0.09999999999999998
const x = Big(1);
x.mod(0.9); // '0.1'
}
示例8: lteTests
function lteTests() {
0.1 <= 0.3 - 0.2; // false
const x = new Big(0.1);
x.lte(Big(0.3).minus(0.2)); // true
Big(-1).lte(x); // true
}
示例9: ltTests
function ltTests() {
0.3 - 0.2 < 0.1; // true
const x = new Big(0.3).minus(0.2);
x.lt(0.1); // false
Big(0).lt(x); // true
}
示例10: gteTests
function gteTests() {
0.3 - 0.2 >= 0.1; // false
const x = new Big(0.3).minus(0.2);
x.gte(0.1); // true
Big(1).gte(x); // true
}