System::Nullable::operator- method

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.

См. также