Exemplo n.º 1
0
 constexpr bool IsNull() const {
   return value.IsNull();
 }
Exemplo n.º 2
0
 constexpr bool operator==(std::nullptr_t) const {
   return value.IsNull();
 }
Exemplo n.º 3
0
 gcc_pure
 bool operator!=(std::nullptr_t) const {
   return !value.IsNull();
 }