gpt4 book ai didi

c++ - 将 std::tuple 递归转换为 std::variant

转载 作者:行者123 更新时间:2023-12-01 14:47:54 24 4
gpt4 key购买 nike

需要知道使用什么技术来声明 std::variant type 包含包含在给定 std::tuple 中的所有类型及其子元组(如果元素也是元组)递归。

例如,

std::tuple<int, std::tuple<int, double, std::tuple<float, double, std::string>>>

转变为
std::variant<int, double, float, std::string>

简而言之,我需要将所有独特的类型都包含到 std::variant 中。 .

最佳答案

Boost.Mp11 ,这还不算太糟。

第一步是递归地展平输入列表。我们有 mp_flatten ,但这只会进行一次扁平化 - 我们需要递归调用它。可能有更好的方法来做到这一点,但到目前为止我想出的最好方法是使用 mp_iterate具有只有在执行某些操作时才会变平的函数:

// maybe_flatten succeeds only if it actually flattens
// (once we're flat, it's ill-formed, we use that a terminating condition for mp_iterate)
template <typename L,
typename U=mp_flatten<L>,
typename = std::enable_if_t<not mp_same<L, U>::value>>
using maybe_flatten = U;

template <typename L>
using recursive_flatten = mp_back<mp_iterate<L, mp_identity_t, maybe_flatten>>;

一旦我们有了 recursive_flatten ,那么我们需要做的就是确保类型是唯一的并将其重命名为变体:
template <typename L>
using to_variant = mp_rename<mp_unique<recursive_flatten<L>>, std::variant>;

Demo .

我一直在尝试使用线程元函数(a la Clojure 的 -> ),以便您可以编写按顺序调用的函数。我不确定它是否更好:
template <typename L>
using recursive_flatten2 = thread<
mp_iterate<L, mp_identity_t, maybe_flatten>,
mp_back>;

template <typename L>
using to_variant2 = thread_q<
L,
mp_quote<recursive_flatten2>,
mp_quote<mp_unique>,
mp_bind_q<mp_quote<mp_apply_q>, mp_quote<std::variant>, _1>
>;

Demo w/ thread .

关于c++ - 将 std::tuple 递归转换为 std::variant,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61639962/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com