operator>=()

Decimal::operator>=(const Decimal&) const method

Determines if the value represented by the current object is greater than or equal to the value represented by the specified object.

bool System::Decimal::operator>=(const Decimal &d) const

Arguments

ParameterTypeDescription
dconst Decimal&The Decimal object to compare the current object with

Return Value

True if the value represented by the current object is greater than or equal to the value represented by d, otherwise - false

See Also