如何转换boost::fusion::vector的类型?

How to transform types of boost::fusion::vector?

我需要为指定的类型列表定义两种类型:第一种是这些类型的 boost::fusion::vector,第二种是 boost::fusion::vector,其中为类型列表中的每种类型删除了引用和 const

例如,我有intunsigned &long const &。我需要定义 boost::fusion::vector<int, unsigned &, long const &>boost::fusion::vector<int, unsigned, long>.

这是我的代码:

struct RemoveRef
{
    template <class T>
    struct apply
    {
        using type =
            typename std::remove_const<typename std::remove_reference<T>::type>::type;
    };
};

template <typename...Args>
struct BasicDefinition
{
    typedef typename boost::mpl::vector<Args...> Types;
    typedef typename boost::fusion::result_of::as_vector<Types>::type ArgsType;
    typedef typename boost::mpl::transform<Types, RemoveRef>::type ValueTypes;
    typedef typename boost::fusion::result_of::as_vector<ValueTypes>::type ArgValuesType;
};

有效。我将这些类型作为 BasicDefinition<>::ArgsTypeBasicDefinition<>::ArgValuesType。但我想摆脱 boost::mpl::vectors 并直接从第一个类型构建第二个类型。有没有可能达到这样的效果?

类似于:

template <typename...Args>
struct BasicDefinition
{
    typedef typename boost::fusion::vector<Args...> ArgsType;
    typedef ?????<ArgsTypes, RemoveRef>::type ArgValuesType;
};

您可能会使用 std::decay_t

template <typename...Args>
struct BasicDefinition
{
    using ArgsType = boost::fusion::vector<Args...>;
    using ArgValuesType = boost::fusion::vector<std::decay_t<Args>...>;
};