Как преобразовать типы boost :: fusion :: vector? - PullRequest
0 голосов
/ 05 июня 2018

Мне нужно определить два типа для указанного списка типов: первый - boost::fusion::vector этих типов, а второй - boost::fusion::vector, где ссылки и const удалены для каждого типа в списке типов.

Например,У меня есть int, unsigned & и 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<>::ArgsType и BasicDefinition<>::ArgValuesType.Но я хочу избавиться от boost::mpl::vector s и построить второй тип напрямую из первого.Можно ли добиться такого результата?

Что-то вроде:

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

1 Ответ

0 голосов
/ 05 июня 2018

Вы можете использовать std::decay_t

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