More actions
Import>Mirandnyan mNo edit summary |
m 1 revision imported |
||
(No difference)
|
Latest revision as of 23:44, 16 January 2025
Synopsis
Used to add two values _A and _B of type INTEGER and binding its result to _Sum.
Syntax
IntegerSum(INTEGER_A, INTEGER_B, INTEGER_Sum)
kind | name | inputs | outputs |
---|---|---|---|
query | IntegerSum | 2 | 1 |
type | name | description |
---|---|---|
INTEGER | _A | |
INTEGER | _B |
type | name | description |
---|---|---|
INTEGER | _Sum |
Examples
Example 1:
IF DB_ExampleMath(_Id, "add", _Current, _Add) AND IntegerSum(_Current, _Add, _New) THEN NOT DB_Example(_Id, "add", _Current, _Add); NOT DB_ExampleValues(_Id, _Current); DB_ExampleValues(_Id, _New);
Related
Groups
Similar
This is an Osiris engine query, see the Osiris/Functions Overview page for details.