The OpenD Programming Language

adds

Add two signed integers, checking for overflow.

The overflow is sticky, meaning a sequence of operations can be done and overflow need only be checked at the end.

  1. int adds(int x, int y, bool overflow)
  2. long adds(long x, long y, bool overflow)
    nothrow @safe @nogc pure pragma(inline, true)
    long
    adds
    (
    long x
    ,
    long y
    ,
    scope ref bool overflow
    )
  3. cent adds(cent x, cent y, bool overflow)

Parameters

x long

left operand

y long

right operand

overflow bool

set if an overflow occurs, is not affected otherwise

Return Value

Type: long

the sum

Meta