Equals()

System::Equals(const TA&, const TB&) function

Determines the equality of two values applying operator==() to them.

template<typename TA,typename TB> bool System::Equals(const TA &a, const TB &b)

Template parameters

ParameterDescription
TAThe type of the first comparand
TBThe type of the second comparand

Arguments

ParameterTypeDescription
aconst TA&The first comparand
bconst TB&The second comparand

Return Value

The boolean value returned by operator==() applied to a and b

See Also