System::Nullable::operator+ method
Contents
[
Hide
]Nullable::operator+(const Nullable<T1>&) const method
Sums nullable values.
template<typename T1> System::Nullable<decltype(get_Value()+other.get_Value())> System::Nullable<T>::operator+(const Nullable<T1> &other) const
Parameter | Description |
---|---|
T1 | Right operand type. |
Parameter | Type | Description |
---|---|---|
other | const Nullable<T1>& | value to add. |
ReturnValue
Summing result.
See Also
- Class Nullable
- Class Nullable
- Namespace System
- Library Aspose.Font for C++
Nullable::operator+(const T1&) const method
Sums nullable and non-nullable values.
template<typename T1,typename> Nullable<decltype(get_Value()+other)> System::Nullable<T>::operator+(const T1 &other) const
Parameter | Description |
---|---|
T1 | Right operand type. |
Parameter | Type | Description |
---|---|---|
other | const T1& | value to add. |
ReturnValue
Summing result.
See Also
- Class Nullable
- Class Nullable
- Namespace System
- Library Aspose.Font for C++
Nullable::operator+(std::nullptr_t) const method
Returns a default constructed instance of Nullable
Nullable<T> System::Nullable<T>::operator+(std::nullptr_t) const
See Also
- Class Nullable
- Class Nullable
- Namespace System
- Library Aspose.Font for C++