Ada*_*dam 7 c++ structured-bindings
我有一个模板,该模板的类型可以在结构上绑定到两个别名(可以是一个元组,也可以是一个结构)。我需要别名指向的两个变量的类型。
template <typename T>
T obj;
// type of a/b in auto&& [a, b] = obj ?
Run Code Online (Sandbox Code Playgroud)
在实际使用结构化绑定之前,我需要知道类型:
template <typename S>
void fn(ranges::any_view<S> range_of_tuple_or_struct_or_pair) {
last_from = std::numeric_limits<?????>::max();
// ????? should be the type of from (or to, they should be the same types) of:
// auto&& [from, to] = <range element>
for (auto&& [from, to] : range_of_tuple_or_struct_or_pair) {
if (from != last_from) {
...;
last_from = from;
}
}
}
Run Code Online (Sandbox Code Playgroud)
我认为你可以这样做:
#include <type_traits>
template <typename T, typename U>
struct Identity {
using type_first = T;
using type_second = U;
};
template <typename T>
constexpr auto GetTypes(const T& obj) noexcept {
const auto& [x, y] = obj;
return Identity<std::remove_cv_t<decltype(x)>,
std::remove_cv_t<decltype(y)>>{};
}
template <typename T>
void foo(T obj) {
// T is structurally-bindable with two fields
constexpr auto Types = GetTypes(obj);
using t1 = typename decltype(Types)::type_first;
using t2 = typename decltype(Types)::type_second;
// t1 is the first type
// t2 is the second type
}
Run Code Online (Sandbox Code Playgroud)
请注意,constexpr即使不启用优化,也不会产生任何开销。
| 归档时间: |
|
| 查看次数: |
91 次 |
| 最近记录: |