Searched refs:TheState (Results 1 – 1 of 1) sorted by relevance
89 : TheState(State::FAILURE), TheError(std::move(AnError)) { in Expected()96 Expected(T Value) : TheState(State::SUCCESS), TheValue(std::move(Value)) {} in Expected()98 Expected(const Expected &That) : TheState(That.TheState) { in Expected()99 switch (TheState) { in Expected()113 TheState = That.TheState;114 switch (TheState) {128 Expected(Expected &&That) noexcept : TheState(That.TheState) { in Expected()129 switch (TheState) { in Expected()140 That.TheState = State::MOVED; in Expected()144 Expected(const Expected<U> &That) : TheState(That.TheState) { in Expected()[all …]