Searched refs:nothing_ (Results 1 – 1 of 1) sorted by relevance
106 bool nothing_; variable112 Maybe<T>::Maybe() : nothing_(true) {} in Maybe()116 if (!nothing_) { in ~Maybe()122 Maybe<T>::Maybe(const Maybe& rhs) : nothing_(rhs.nothing_) { in Maybe()123 if (!rhs.nothing_) { in Maybe()130 Maybe<T>::Maybe(const Maybe<U>& rhs) : nothing_(rhs.nothing_) { in Maybe()131 if (!rhs.nothing_) { in Maybe()137 Maybe<T>::Maybe(Maybe&& rhs) noexcept : nothing_(rhs.nothing_) { in Maybe()138 if (!rhs.nothing_) { in Maybe()139 rhs.nothing_ = true; in Maybe()[all …]