-
Notifications
You must be signed in to change notification settings - Fork 0
Add is_convertible_without_narrowing
#54
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
384edff
37bf953
6443dfa
65e4638
9ba01d3
0b16dda
1a0b140
1a35a62
8a4f052
b9c6216
cdec1b1
daab5d1
1380b7e
66ca64b
de99433
c378972
80ad201
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
aggregate_initialize_overload using `is_convertible_withou…
…t_narrowing_v`
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -222,6 +222,25 @@ template<class T> | |
| constexpr bool is_trivially_swappable_v = is_trivially_swappable<T>::value; | ||
|
|
||
|
|
||
| // P0870R7: is_convertible_without_narrowing | ||
| // https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2025/p0870r7.html | ||
| template<class From, class To> | ||
| struct is_convertible_without_narrowing | ||
| : std::false_type | ||
| {}; | ||
|
|
||
| template<class From, class To> | ||
| requires | ||
| std::is_convertible_v<From, To> && | ||
| requires { std::type_identity_t<To[]>{std::declval<From>()}; } | ||
| struct is_convertible_without_narrowing<From, To> | ||
| : std::true_type | ||
| {}; | ||
|
|
||
| template<class From, class To> | ||
| inline constexpr bool is_convertible_without_narrowing_v = is_convertible_without_narrowing<From, To>::value; | ||
|
|
||
|
|
||
| namespace detail { | ||
|
|
||
| template<std::size_t I, class Ti> | ||
|
|
@@ -231,19 +250,12 @@ struct aggregate_initialize_tag | |
| using type = Ti; | ||
| }; | ||
|
|
||
| // This version works better than MSVC's, does not break IntelliSense or ReSharper | ||
| template<std::size_t I, class Ti> | ||
| struct aggregate_initialize_overload | ||
| { | ||
| using TiA = Ti[]; | ||
|
|
||
| // https://eel.is/c++draft/dcl.init.general#14 | ||
| // https://eel.is/c++draft/dcl.init.list#3.4 | ||
| // https://eel.is/c++draft/dcl.init.aggr#3 | ||
|
|
||
| template<class T> | ||
| auto operator()(Ti, T&&) -> aggregate_initialize_tag<I, Ti> | ||
| requires requires(T&& t) { { TiA{std::forward<T>(t)} }; } // emulate `Ti x[] = {std::forward<T>(t)};` | ||
| requires is_convertible_without_narrowing_v<T, Ti> | ||
|
Comment on lines
277
to
+279
Contributor
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. I think the first parameter
Member
Author
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. No, the For example, constructing |
||
| { | ||
| return {}; // silence MSVC warning | ||
| } | ||
|
|
@@ -283,24 +295,6 @@ struct aggregate_initialize_resolution< | |
| template<class T, class... Ts> | ||
| struct aggregate_initialize_resolution : detail::aggregate_initialize_resolution<void, T, Ts...> {}; | ||
|
|
||
| // P0870R7: is_convertible_without_narrowing | ||
| // https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2025/p0870r7.html | ||
| template<class From, class To> | ||
| struct is_convertible_without_narrowing | ||
| : std::false_type | ||
| {}; | ||
|
|
||
| template<class From, class To> | ||
| requires | ||
| std::is_convertible_v<From, To> && | ||
| requires { std::type_identity_t<To[]>{std::declval<From>()}; } | ||
| struct is_convertible_without_narrowing<From, To> | ||
| : std::true_type | ||
| {}; | ||
|
|
||
| template<class From, class To> | ||
| inline constexpr bool is_convertible_without_narrowing_v = is_convertible_without_narrowing<From, To>::value; | ||
|
|
||
| } // iris | ||
|
|
||
| #endif | ||
Uh oh!
There was an error while loading. Please reload this page.