diff --git a/libcxx/include/CMakeLists.txt b/libcxx/include/CMakeLists.txt --- a/libcxx/include/CMakeLists.txt +++ b/libcxx/include/CMakeLists.txt @@ -29,6 +29,7 @@ __algorithm/includes.h __algorithm/inplace_merge.h __algorithm/in_in_result.h + __algorithm/in_fun_result.h __algorithm/is_heap_until.h __algorithm/is_heap.h __algorithm/is_partitioned.h diff --git a/libcxx/include/__algorithm/in_fun_result.h b/libcxx/include/__algorithm/in_fun_result.h new file mode 100644 --- /dev/null +++ b/libcxx/include/__algorithm/in_fun_result.h @@ -0,0 +1,45 @@ +// -*- C++ -*- +//===----------------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +#ifndef _LIBCPP___ALGORITHM_IN_FUN_RESULT_H +#define _LIBCPP___ALGORITHM_IN_FUN_RESULT_H + +#include <__concepts/convertible_to.h> +#include <__config> +#include <__utility/move.h> + +_LIBCPP_BEGIN_NAMESPACE_STD + +#ifndef _LIBCPP_HAS_NO_RANGES + +namespace ranges { +template +struct in_fun_result { + [[no_unique_address]] _Ip in; + [[no_unique_address]] _Fp fun; + + template + requires convertible_to && convertible_to + constexpr operator in_fun_result<_I2, _F2>() const & { + return {in, fun}; + } + + template + requires convertible_to<_Ip, _I2> && convertible_to<_Fp, _F2> + constexpr operator in_fun_result<_I2, _F2>() && { + return {std::move(in), std::move(fun)}; + } +}; +} // namespace ranges + +#endif // _LIBCPP_HAS_NO_RANGES + +_LIBCPP_END_NAMESPACE_STD + +#endif // _LIBCPP___ALGORITHM_IN_FUN_RESULT_H diff --git a/libcxx/include/algorithm b/libcxx/include/algorithm --- a/libcxx/include/algorithm +++ b/libcxx/include/algorithm @@ -20,7 +20,10 @@ namespace ranges { template - struct in_in_result; // since C++20 + struct in_in_result; // since C++20 + + template + struct in_fun_result; // since C++20 } template @@ -691,6 +694,7 @@ #include <__algorithm/generate.h> #include <__algorithm/half_positive.h> #include <__algorithm/includes.h> +#include <__algorithm/in_fun_result.h> #include <__algorithm/inplace_merge.h> #include <__algorithm/in_in_result.h> #include <__algorithm/is_heap.h> diff --git a/libcxx/include/module.modulemap b/libcxx/include/module.modulemap --- a/libcxx/include/module.modulemap +++ b/libcxx/include/module.modulemap @@ -248,6 +248,7 @@ module half_positive { private header "__algorithm/half_positive.h" } module includes { private header "__algorithm/includes.h" } module in_in_result { private header "__algorithm/in_in_result.h" } + module in_fun_result { private header "__algorithm/in_fun_result.h" } module inplace_merge { private header "__algorithm/inplace_merge.h" } module is_heap { private header "__algorithm/is_heap.h" } module is_heap_until { private header "__algorithm/is_heap_until.h" } diff --git a/libcxx/test/std/algorithms/algorithms.results/in_fun_result.pass.cpp b/libcxx/test/std/algorithms/algorithms.results/in_fun_result.pass.cpp new file mode 100644 --- /dev/null +++ b/libcxx/test/std/algorithms/algorithms.results/in_fun_result.pass.cpp @@ -0,0 +1,80 @@ +//===----------------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +// UNSUPPORTED: c++03, c++11, c++14, c++17 +// UNSUPPORTED: libcpp-no-concepts +// UNSUPPORTED: libcpp-has-no-incomplete-ranges + +// template +// struct in_fun_result; + +#include +#include +#include + +struct MoveOnly { + MoveOnly() = default; + MoveOnly(const MoveOnly&) = delete; + MoveOnly(MoveOnly&& o) { o.movedFrom = true; } + + bool movedFrom = false; +}; + +template +struct ConstructibleFrom { + ConstructibleFrom(T c) : content{c} {} + T content; +}; + +struct Empty {}; + +struct A { + explicit A(int); +}; +static_assert(!std::is_constructible_v, + std::ranges::in_fun_result>); + +struct B { + B(const int&); + B(int&&); +}; +static_assert(std::is_constructible_v, std::ranges::in_fun_result>); +static_assert(std::is_constructible_v, std::ranges::in_fun_result&>); +static_assert(std::is_constructible_v, const std::ranges::in_fun_result>); +static_assert(std::is_constructible_v, const std::ranges::in_fun_result&>); + +struct C { + C(int&); +}; +static_assert(!std::is_constructible_v, std::ranges::in_fun_result&>); + +static_assert(std::is_convertible_v< std::ranges::in_fun_result&, std::ranges::in_fun_result>); +static_assert(!std::is_nothrow_convertible_v&, std::ranges::in_fun_result>); +static_assert(std::is_convertible_v< const std::ranges::in_fun_result&, std::ranges::in_fun_result>); +static_assert(!std::is_nothrow_convertible_v&, std::ranges::in_fun_result>); +static_assert(std::is_convertible_v< std::ranges::in_fun_result&&, std::ranges::in_fun_result>); +static_assert(!std::is_nothrow_convertible_v&&, std::ranges::in_fun_result>); +static_assert(std::is_convertible_v< const std::ranges::in_fun_result&&, std::ranges::in_fun_result>); +static_assert(!std::is_nothrow_convertible_v&&, std::ranges::in_fun_result>); + +int main(int, char**) { + { + std::ranges::in_fun_result res{10L, 0.}; + assert(res.in == 10); + assert(res.fun == 0.); + std::ranges::in_fun_result, ConstructibleFrom> res2 = res; + assert(res2.in.content == 10); + assert(res2.fun.content == 0.); + } + { + std::ranges::in_fun_result res; + assert(!res.in.movedFrom); + [[maybe_unused]] auto res2 = static_cast>(std::move(res)); + assert(res.in.movedFrom); + } +} diff --git a/libcxx/test/std/algorithms/algorithms.results/no_unqiue_address.compile.pass.cpp b/libcxx/test/std/algorithms/algorithms.results/no_unqiue_address.compile.pass.cpp --- a/libcxx/test/std/algorithms/algorithms.results/no_unqiue_address.compile.pass.cpp +++ b/libcxx/test/std/algorithms/algorithms.results/no_unqiue_address.compile.pass.cpp @@ -22,3 +22,7 @@ static_assert(sizeof(std::ranges::in_in_result) == sizeof(int)); static_assert(sizeof(std::ranges::in_in_result) == sizeof(int)); static_assert(sizeof(std::ranges::in_in_result) == 2 * sizeof(Empty)); + +static_assert(sizeof(std::ranges::in_fun_result) == sizeof(int)); +static_assert(sizeof(std::ranges::in_fun_result) == sizeof(int)); +static_assert(sizeof(std::ranges::in_fun_result) == 2 * sizeof(Empty));