Constructs a tuple by adding a value v at the end of t.
namespace kumi::result
{
template<product_type Tuple,
typename T>
struct push_back;
template<product_type Tuple, typename T>
using push_back_t = typename push_back<Tuple,T>::type;
}
constexpr auto push_back(Tuple const &t, T &&v)
Constructs a tuple by adding a value v at the end of t.
Definition: push_pop.hpp:102