System::Nullable::operator- मेथड

Nullable::operator-(const Nullable<T1>&) const method

nullable मानों को घटाता है।

template<typename T1> System::Nullable<decltype(get_Value() - other.get_Value())> System::Nullable<T>::operator-(const Nullable<T1> &other) const
पैरामीटरविवरण
T1दाएँ ऑपरेण्ड प्रकार।
पैरामीटरप्रकारविवरण
अन्यconst Nullable<T1>&घटाने के लिए मान।

ReturnValue

घटाव परिणाम।

संबंधित देखें

Nullable::operator-(const T1&) const method

nullable और non-nullable मानों को घटाता है।

template<typename T1,typename> Nullable<decltype(get_Value() - other)> System::Nullable<T>::operator-(const T1 &other) const
पैरामीटरविवरण
T1दाएँ ऑपरेण्ड प्रकार।
पैरामीटरप्रकारविवरण
अन्यconst T1&घटाने के लिए मान।

ReturnValue

घटाव परिणाम।

संबंधित देखें

Nullable::operator-(T1) const method

nullable और null-निर्देशित मानों को घटाता है।

template<typename T1,typename> Nullable<T> System::Nullable<T>::operator-(T1) const
पैरामीटरविवरण
T1दाएँ ऑपरेण्ड का प्रकार, nullptr_t होना चाहिए।

ReturnValue

खाली Nullable वस्तु।

संबंधित देखें