Introduction
The c++ (cpp) tuple_member example is extracted from the most popular open source projects, you can refer to the following example for usage.
Programming language: C++ (Cpp)
Class/type: tuple_member
Example#1File:
tuple.hppProject:
ltroska/hpx
HPX_CONSTEXPR HPX_HOST_DEVICE
tuple_member(tuple_member const& other)
: _value(other.value())
{}
Example#2File:
tuple.hppProject:
sergey-platonov/hpx
BOOST_CONSTEXPR tuple_member(tuple_member const& other)
: _value(other.value())
{}