-
Notifications
You must be signed in to change notification settings - Fork 14.7k
[libc++] Implement the <type_traits>
parts of P1317R2
#151480
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
6cf03e7
a700737
12604b6
b51bcad
f060361
9f3c5f6
6be0f48
d7841b6
c4db93f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// 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___TYPE_TRAITS_IS_APPLICABLE_H | ||
#define _LIBCPP___TYPE_TRAITS_IS_APPLICABLE_H | ||
|
||
#include <__config> | ||
#include <__cstddef/size_t.h> | ||
#include <__fwd/get.h> | ||
#include <__tuple/tuple_like.h> | ||
#include <__tuple/tuple_size.h> | ||
#include <__type_traits/conjunction.h> | ||
#include <__type_traits/integral_constant.h> | ||
#include <__type_traits/invoke.h> | ||
#include <__type_traits/remove_reference.h> | ||
#include <__utility/declval.h> | ||
#include <__utility/integer_sequence.h> | ||
Comment on lines
+14
to
+22
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These includes seemingly heavily break module builds. I guess we need to expand the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's a bit problematic. I almost wonder if we should put this new stuff under There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Moving to |
||
|
||
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) | ||
# pragma GCC system_header | ||
#endif | ||
|
||
_LIBCPP_BEGIN_NAMESPACE_STD | ||
|
||
#if _LIBCPP_STD_VER >= 26 | ||
|
||
template <class _Fn, class _Tuple> | ||
struct __apply_result_disabled_base {}; | ||
|
||
template <class _Fn, class _Tuple, class _Tp> | ||
struct __apply_result_enabled_base { | ||
using type _LIBCPP_NODEBUG = _Tp; | ||
}; | ||
|
||
template <bool _Applicable, bool _Nothrow, class _Tp> | ||
struct __applicability_traits { | ||
static constexpr bool __applicable = true; | ||
static constexpr bool __nothrow_applicable = _Nothrow; | ||
|
||
template <class _Fn, class _Tuple> | ||
using __base_type _LIBCPP_NODEBUG = __apply_result_enabled_base<_Fn, _Tuple, _Tp>; | ||
}; | ||
|
||
template <bool _Nothrow, class _Tp> | ||
struct __applicability_traits<false, _Nothrow, _Tp> { | ||
static_assert(!_Nothrow, "misspecified [_Applicable = false, _Nothrow = true]"); | ||
static constexpr bool __applicable = false; | ||
static constexpr bool __nothrow_applicable = false; | ||
|
||
template <class _Fn, class _Tuple> | ||
using __base_type _LIBCPP_NODEBUG = __apply_result_disabled_base<_Fn, _Tuple>; | ||
}; | ||
|
||
template <class _Fn, class _Tuple, size_t... _Is> | ||
concept __tuple_applicable_impl = requires(_Tuple&& __tuple) { | ||
[](auto&&...) {}(std::get<_Is>(static_cast<_Tuple &&>(__tuple))...); | ||
} && __is_invocable_v<_Fn, decltype(std::get<_Is>(std::declval<_Tuple>()))...>; | ||
|
||
template <class _Fn, class _Tuple, size_t... _Is> | ||
concept __tuple_nothrow_applicable_impl = requires(_Tuple&& __tuple) { | ||
{ | ||
[](auto&&...) noexcept {}(std::get<_Is>(static_cast<_Tuple &&>(__tuple))...) | ||
} noexcept; | ||
} && __is_nothrow_invocable_v<_Fn, decltype(std::get<_Is>(std::declval<_Tuple>()))...>; | ||
|
||
template <class _Fn, class _Tuple> | ||
consteval auto __applicability_traits_of() { | ||
if constexpr (__tuple_like<_Tuple>) | ||
return []<size_t... _Is>(index_sequence<_Is...>) { | ||
if constexpr (__tuple_applicable_impl<_Fn, _Tuple, _Is...>) { | ||
return __applicability_traits< | ||
true, | ||
__tuple_nothrow_applicable_impl<_Fn, _Tuple, _Is...>, | ||
// FIXME: Use __invoke_result_y after merging https://github.com/llvm/llvm-project/pull/151028. | ||
typename __invoke_result<_Fn, decltype(std::get<_Is>(std::declval<_Tuple>()))...>::type>{}; | ||
} else | ||
return __applicability_traits<false, false, void>{}; | ||
}(make_index_sequence<tuple_size_v<remove_reference_t<_Tuple>>>{}); | ||
else | ||
return __applicability_traits<false, false, void>{}; | ||
} | ||
|
||
template <class _Fn, class _Tuple> | ||
struct _LIBCPP_NO_SPECIALIZATIONS is_applicable | ||
: bool_constant<decltype(std::__applicability_traits_of<_Fn, _Tuple>())::__applicable> {}; | ||
|
||
template <class _Fn, class _Tuple> | ||
struct _LIBCPP_NO_SPECIALIZATIONS is_nothrow_applicable | ||
: bool_constant<decltype(std::__applicability_traits_of<_Fn, _Tuple>())::__nothrow_applicable> {}; | ||
|
||
template <class _Fn, class _Tuple> | ||
_LIBCPP_NO_SPECIALIZATIONS inline constexpr bool is_applicable_v = | ||
decltype(std::__applicability_traits_of<_Fn, _Tuple>())::__applicable; | ||
|
||
template <class _Fn, class _Tuple> | ||
_LIBCPP_NO_SPECIALIZATIONS inline constexpr bool is_nothrow_applicable_v = | ||
decltype(std::__applicability_traits_of<_Fn, _Tuple>())::__nothrow_applicable; | ||
|
||
template <class _Fn, class _Tuple> | ||
struct _LIBCPP_NO_SPECIALIZATIONS apply_result | ||
: decltype(std::__applicability_traits_of<_Fn, _Tuple>())::template __base_type<_Fn, _Tuple> {}; | ||
|
||
template <class _Fn, class _Tuple> | ||
using apply_result_t = apply_result<_Fn, _Tuple>::type; | ||
|
||
#endif // _LIBCPP_STD_VER >= 26 | ||
|
||
_LIBCPP_END_NAMESPACE_STD | ||
|
||
#endif // _LIBCPP___TYPE_TRAITS_IS_APPLICABLE_H |
Uh oh!
There was an error while loading. Please reload this page.