Méthode System::Compare

System::Compare(const TA&, const TB&) method

Compare deux valeurs.

template<typename TA,typename TB> std::enable_if_t<!std::is_floating_point<TA>::value &&!std::is_floating_point<TB>::value, int> System::Compare(const TA &a, const TB &b)
ParamètreDescription
TALe type du premier comparand
TBLe type du second comparand
ParamètreTypeDescription
aconst TA&Le premier comparande
bconst TB&Le deuxième comparande

ReturnValue

-1 if a compares less than b; 0 if the values are equal; 1 if a compares greater than b

Voir aussi

System::Compare(const TA&, const TB&) method

Compare deux valeurs à virgule flottante.

template<typename TA,typename TB> std::enable_if_t<std::is_floating_point<TA>::value &&std::is_floating_point<TB>::value, int> System::Compare(const TA &a, const TB &b)
ParamètreDescription
TALe type du premier comparand
TBLe type du second comparand
ParamètreTypeDescription
aconst TA&Le premier comparande
bconst TB&Le deuxième comparande

ReturnValue

-1 if a compares less than b; 0 if the values are equal; 1 if a compares greater than b

Voir aussi