method add

void add(value value);

Argumente

Zurückgegebener Wert

This method performs the arithmetic sum of the bigInt and the specified value.
var bigInt = shell.serviceManager.basics.bigInt;
bigInt.value = 4294967200;              // Max value of u32 is 4294967295
bigInt.add(100);                        // bigInt = 4294967300 = 4294967200 + 100
Assert(bigInt.toString() == "4294967300");