[libc++] Implement P2505R5(Monadic operations for std::expected).
authoryronglin <yronglin777@gmail.com>
Tue, 16 May 2023 17:40:03 +0000 (01:40 +0800)
committeryronglin <yronglin777@gmail.com>
Wed, 17 May 2023 15:42:01 +0000 (23:42 +0800)
commitebc111b08bddca55d5f7e560a20bdb2c913d80cb
treed107a2af580ef8499d6009d936b1359348374454
parent7f3047219cf557fd161c3cd0dd32e7713438dc38
[libc++] Implement P2505R5(Monadic operations for std::expected).

Signed-off-by: yronglin <yronglin777@gmail.com>
29 files changed:
libcxx/docs/FeatureTestMacroTable.rst
libcxx/docs/ReleaseNotes.rst
libcxx/docs/Status/Cxx2bIssues.csv
libcxx/docs/Status/Cxx2bPapers.csv
libcxx/include/__expected/expected.h
libcxx/include/version
libcxx/test/libcxx/utilities/expected/expected.expected/and_then.mandates.verify.cpp [new file with mode: 0644]
libcxx/test/libcxx/utilities/expected/expected.expected/error_or.mandates.verify.cpp [new file with mode: 0644]
libcxx/test/libcxx/utilities/expected/expected.expected/no_unique_address.compile.pass.cpp
libcxx/test/libcxx/utilities/expected/expected.expected/or_else.mandates.verify.cpp [new file with mode: 0644]
libcxx/test/libcxx/utilities/expected/expected.expected/transform_error.mandates.verify.cpp [new file with mode: 0644]
libcxx/test/libcxx/utilities/expected/expected.void/and_then.mandates.verify.cpp [new file with mode: 0644]
libcxx/test/libcxx/utilities/expected/expected.void/error_or.mandates.verify.cpp [new file with mode: 0644]
libcxx/test/libcxx/utilities/expected/expected.void/no_unique_address.compile.pass.cpp
libcxx/test/libcxx/utilities/expected/expected.void/or_else.mandates.verify.cpp [new file with mode: 0644]
libcxx/test/libcxx/utilities/expected/expected.void/transform_error.mandates.verify.cpp [new file with mode: 0644]
libcxx/test/std/language.support/support.limits/support.limits.general/expected.version.compile.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/version.version.compile.pass.cpp
libcxx/test/std/utilities/expected/expected.expected/monadic/and_then.pass.cpp [new file with mode: 0644]
libcxx/test/std/utilities/expected/expected.expected/monadic/or_else.pass.cpp [new file with mode: 0644]
libcxx/test/std/utilities/expected/expected.expected/monadic/transform.pass.cpp [new file with mode: 0644]
libcxx/test/std/utilities/expected/expected.expected/monadic/transform_error.pass.cpp [new file with mode: 0644]
libcxx/test/std/utilities/expected/expected.expected/observers/error_or.pass.cpp [new file with mode: 0644]
libcxx/test/std/utilities/expected/expected.void/monadic/and_then.pass.cpp [new file with mode: 0644]
libcxx/test/std/utilities/expected/expected.void/monadic/or_else.pass.cpp [new file with mode: 0644]
libcxx/test/std/utilities/expected/expected.void/monadic/transform.pass.cpp [new file with mode: 0644]
libcxx/test/std/utilities/expected/expected.void/monadic/transform_error.pass.cpp [new file with mode: 0644]
libcxx/test/std/utilities/expected/expected.void/observers/error_or.pass.cpp [new file with mode: 0644]
libcxx/utils/generate_feature_test_macro_components.py