Namespaces
Variants

std::expected<T,E>:: and_then

From cppreference.net
Utilities library
기본 템플릿
template < class F >
constexpr auto and_then ( F && f ) & ;
(1) (C++23부터)
template < class F >
constexpr auto and_then ( F && f ) const & ;
(2) (C++23부터)
template < class F >
constexpr auto and_then ( F && f ) && ;
(3) (C++23부터)
template < class F >
constexpr auto and_then ( F && f ) const && ;
(4) (C++23부터)
void 부분 특수화
template < class F >
constexpr auto and_then ( F && f ) & ;
(5) (C++23부터)
template < class F >
constexpr auto and_then ( F && f ) const & ;
(6) (C++23부터)
template < class F >
constexpr auto and_then ( F && f ) && ;
(7) (C++23부터)
template < class F >
constexpr auto and_then ( F && f ) const && ;
(8) (C++23부터)

만약 * this 가 기대값을 나타내는 경우, f 를 호출하고 그 결과를 반환합니다. 그렇지 않은 경우, std::expected 객체를 반환하며, 이 객체는 * this 의 비예상값으로 초기화된 비예상값을 포함합니다.

1-4) f 는 기대값 val 을 인자로 하여 호출됩니다.
5-8) f 는 인수 없이 호출됩니다.

주어진 타입 U 는 다음과 같습니다:

1,2) std:: remove_cvref_t < std:: invoke_result_t < F, decltype ( ( val ) ) >>
3,4) std:: remove_cvref_t < std:: invoke_result_t < F, decltype ( std :: move ( val ) ) >>

만약 U std::expected 의 특수화가 아니거나, std:: is_same_v < U :: error_type , E > false 인 경우, 프로그램의 형식이 올바르지 않습니다.

1,2) 다음 오버로드들은 다음 조건이 std:: is_constructible_v < E, decltype ( error ( ) ) > 일 때에만 오버로드 해결에 참여합니다.
3,4) 이 오버로드들은 다음 조건이 충족될 때만 오버로드 해결에 참여합니다: std:: is_constructible_v < E, decltype ( std :: move ( error ( ) ) ) > true 인 경우입니다.
5,6) 이 오버로드들은 다음 조건이 std:: is_constructible_v < E, decltype ( error ( ) ) > 일 때만 오버로드 해결에 참여합니다.
7,8) 이 오버로드들은 다음 조건이 std:: is_constructible_v < E, decltype ( std :: move ( error ( ) ) ) > true 일 때만 오버로드 해결에 참여합니다.

목차

매개변수

f - 적합한 함수 또는 Callable 객체로서 std::expected 를 반환하는

반환값

오버로드 has_value() 의 값
true false
( 1,2 ) std:: invoke ( std:: forward < F > ( f ) , val ) U ( std:: unexpect , error ( ) )
( 3,4 ) std:: invoke ( std:: forward < F > ( f ) ,std :: move ( val ) ) U ( std:: unexpect , std :: move ( error ( ) ) )
( 5,6 ) std:: invoke ( std:: forward < F > ( f ) ) U ( std:: unexpect , error ( ) )
( 7,8 ) U ( std:: unexpect , std :: move ( error ( ) ) )

참고 사항

기능 테스트 매크로 표준 기능
__cpp_lib_expected 202211L (C++23) std::expected 에 대한 모나딕 함수

예제

결함 보고서

다음의 동작 변경 결함 보고서들은 이전에 발표된 C++ 표준에 소급 적용되었습니다.

DR 적용 대상 게시된 동작 올바른 동작
LWG 3938 C++23 기대값이 value ( ) [1] 로 획득됨 다음으로 변경됨 ** this
LWG 3973 C++23 기대값이 ** this [2] 로 획득됨 다음으로 변경됨 val
  1. value() E 가 복사 생성 가능해야 하지만 (참조: LWG 이슈 3843 ), operator* 는 그렇지 않습니다.
  2. ** this 인수 의존적 탐색 을 유발할 수 있습니다.

참고 항목

expected 에서 예상치 못한 값을 위한 인플레이스 생성 태그
(태그)
예상된 값이 존재할 경우 변환된 값을 포함하는 expected 를 반환하고, 그렇지 않으면 expected 자체를 반환함
(public member function)