operator&=()

Nullable::operator&=(bool) method

Applies operator&=() to the value represented by the current object using the specified value as a right-side argument.

template<typename T1> std::enable_if<std::is_same<T1, bool>::value, Nullable<T>>::type System::Nullable<T>::operator&=(bool other)

Template parameters

ParameterDescription
T1The template parameter to make SFINAE work.

Arguments

ParameterTypeDescription
otherboolA boolean value that is used as a right-side value of the operator&=() applied to the value represented by the current object.

Return Value

A reference to the self.

See Also