System::Nullable::operator+ metod

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

Adderar nullable‑värden.

template<typename T1> System::Nullable<decltype(get_Value()+other.get_Value())> System::Nullable<T>::operator+(const Nullable<T1> &other) const
ParameterBeskrivning
T1Typ av höger operand.
ParameterTypeBeskrivning
annatconst Nullable<T1>&värde att lägga till.

ReturnValue

Resultat av summering.

Se även

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

Adderar nullable‑ och icke‑nullable‑värden.

template<typename T1,typename> Nullable<decltype(get_Value()+other)> System::Nullable<T>::operator+(const T1 &other) const
ParameterBeskrivning
T1Typ av höger operand.
ParameterTypeBeskrivning
annatconst T1&värde att lägga till.

ReturnValue

Resultat av summering.

Se även

Nullable::operator+(std::nullptr_t) const method

Returnerar en standardkonstruktad instans av klassen Nullable.

Nullable<T> System::Nullable<T>::operator+(std::nullptr_t) const

Se även