Lines Matching refs:right_
66 : right_{std::forward<U>(either)}, is_right_{true} {}
77 return right_;
81 return right_;
94 T right_;
108 right_.~T();
116 noexcept(T(std::move(other.right_))) &&
122 new (&right_) T(std::move(other.right_));
134 new (&right_) T(other.right_);
152 new (&right_) T(other.right_);
154 right_ = other.right_;
158 right_.~T();
180 new (&right_) T(std::move(other.right_));
182 right_ = std::move(other.right_);
186 right_.~T();
213 : right_{std::forward<U>(either)}, is_right_{true} {}
224 return right_;
228 return right_;
241 T right_;