Lines Matching defs:expected
54 class expected; variable
115 constexpr expected(const expected<U, G>& rhs) { in expected() function
134 constexpr explicit expected(const expected<U, G>& rhs) { in expected() function
154 constexpr expected(expected<U, G>&& rhs) { in expected() function
173 constexpr explicit expected(expected<U, G>&& rhs) { in expected() function
186 constexpr expected(U&& v) : var_(std::in_place_index<0>, std::forward<U>(v)) {} in expected() function
196 constexpr explicit expected(U&& v) : var_(std::in_place_index<0>, T(std::forward<U>(v))) {} in expected() function
203 constexpr expected(const unexpected<G>& e) in expected() function
210 constexpr explicit expected(const unexpected<G>& e) in expected() function
218 constexpr expected(unexpected<G>&& e) in expected() function
225 constexpr explicit expected(unexpected<G>&& e) in expected() function
231 constexpr explicit expected(std::in_place_t, Args&&... args) in expected() function
237 constexpr explicit expected(std::in_place_t, std::initializer_list<U> il, Args&&... args) in expected() function
243 constexpr explicit expected(unexpect_t, Args&&... args) in expected() function
249 constexpr explicit expected(unexpect_t, std::initializer_list<U> il, Args&&... args) in expected() function
436 constexpr expected(const expected<U, G>& rhs) { in expected() function
444 constexpr explicit expected(const expected<U, G>& rhs) { in expected() function
453 constexpr expected(expected<U, G>&& rhs) { in expected() function
461 constexpr explicit expected(expected<U, G>&& rhs) { in expected() function
470 constexpr expected(const unexpected<G>& e) in expected() function
477 constexpr explicit expected(const unexpected<G>& e) in expected() function
485 constexpr expected(unexpected<G>&& e) in expected() function
492 constexpr explicit expected(unexpected<G>&& e) in expected() function
498 constexpr explicit expected(std::in_place_t, Args&&...) {} in expected() function
503 constexpr explicit expected(unexpect_t, Args&&... args) in expected() function
509 constexpr explicit expected(unexpect_t, std::initializer_list<U> il, Args&&... args) in expected() function