Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

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)
Information
kind name inputs outputs
query IntegerSum 2 1
Input Arguments
type name description
INTEGER _A
INTEGER _B
Output Arguments
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

Osiris/Functions/Queries

Groups

Similar



This is an Osiris engine query, see the Osiris/Functions Overview page for details.