Skip to content

FloatGE

FloatGE

Description

Test whether lhs is greater than or equal to rhs.

Parameters

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

Usage example (from documentation)

  bool at_least = FloatGE(&value, baseline);

Returns

true when lhs >= rhs.

Usage example (Cross-references)

Usage examples (Cross-references)
        result      = result && FloatLE(&a, &b);
        result      = result && FloatGT(&b, &a);
        result      = result && FloatGE(&b, &a);
        result      = result && FloatNE(&a, &b);
        result      = result && FloatEQ(&b, &expected);
        result      = result && FloatEQ(&value, same);
        result      = result && FloatEQ(&value, 12.5);
        result      = result && FloatGE(&value, 12.5f);
        result      = result && FloatGT(&value, whole);
        result      = result && FloatLE(&value, 13);
Last updated on