gpt4 book ai didi

c++ - 是否可以通过演绎指南实现整个 std::make_tuple 功能?

转载 作者:行者123 更新时间:2023-11-30 01:37:01 26 4
gpt4 key购买 nike

Here 指出 C++17 中的演绎指南将使 std::make_tuple 过时。然而,据我所知,std::make_tuplestd::tuple::tuple 的标准推导指南之间的区别在于给定一个 std::reference_wrapper, std::make_tuple 将推导出一个引用。

这个推导如何用推导来实现?类似的东西,但扩展到 std::tuple::tuple 具有的模板 Args...:

#include <tuple>
#include <functional>

template <typename T>
struct Element {
Element(std::reference_wrapper<std::decay_t<T>> rw) : value_{rw.get()} {}
Element(T t) : value_{std::move(t)} {}

T value_;
};

template <typename T> Element(T) -> Element<T>;
template <typename T> Element(std::reference_wrapper<T>) -> Element<T&>;
template <typename T> Element(std::reference_wrapper<const T>) -> Element<const T&>;

struct A {
int i;
};

int main()
{
A a{10};

Element wa{std::ref(a)};
static_assert(std::is_lvalue_reference_v<decltype(wa.value_)>);

Element wb{A{15}};
static_assert(std::is_object_v<decltype(wb.value_)>);
}

Example .

最佳答案

template<class T> struct unwrap { using type = T; };
template<class T> struct unwrap<reference_wrapper<T>> { using type = T&; };

template<class... Ts>
tuple(Ts...) -> tuple<typename unwrap<Ts>::type...>;

关于c++ - 是否可以通过演绎指南实现整个 std::make_tuple 功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50635291/

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