Skip to content

IntNE

IntNE

Description

Test whether two numeric values differ.

Parameters

Name Direction Description
lhs in Left-hand integer
rhs in Right-hand operand selected through generic dispatch

Usage example (from documentation)

  bool changed = IntNE(&value, expected);

Returns

true when lhs != rhs.

Usage example (Cross-references)

Usage examples (Cross-references)
        result      = result && IntGE(&b, &c);
        result      = result && IntLE(&b, &c);
        result      = result && IntNE(&a, &b);
    
        IntDeinit(&a);
        result      = result && IntGT(&value, -1);
        result      = result && IntLT(&value, 100ULL);
        result      = result && IntNE(&value, 43);
    
        IntDeinit(&value);
Last updated on