System::Nullable::operator+ methode

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

Somt nullable waarden op.

template<typename T1> System::Nullable<decltype(get_Value()+other.get_Value())> System::Nullable<T>::operator+(const Nullable<T1> &other) const
ParameterBeschrijving
T1Type van de rechter operand.
ParameterTypeBeschrijving
andersconst Nullable<T1>&waarde om toe te voegen.

ReturnValue

Somresultaat.

Zie ook

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

Somt nullable en niet-nullable waarden op.

template<typename T1,typename> Nullable<decltype(get_Value()+other)> System::Nullable<T>::operator+(const T1 &other) const
ParameterBeschrijving
T1Type van de rechter operand.
ParameterTypeBeschrijving
andersconst T1&waarde om toe te voegen.

ReturnValue

Somresultaat.

Zie ook

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

Retourneert een standaard geconstrueerde instantie van de Nullable-klasse.

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

Zie ook