operator/()

System::operator/(const T&, const Decimal&) function

Returns a new instance of Decimal class that represents a value that is a result of division of the specified value and the value represented by the specified Decimal object.

template<typename T,typename _> Decimal System::operator/(const T &x, const Decimal &d)

Arguments

ParameterTypeDescription
xconst T&The value to divide
dconst Decimal&The Decimal object representing the divisor

Return Value

A new instance of Decimal class that represents a value that is a result of division of x by the value represented by d.

See Also