std::forward_as_tuple (3) Linux Manual Page
std::forward_as_tuple – std::forward_as_tuple Synopsis Defined in header <tuple> template< class… Types > (since C++11) tuple<Types&&…> forward_as_tuple( Types&&… args ) noexcept; (constexpr since C++14) Constructs a tuple of references to the arguments in args suitable for forwarding as an argument to a function. The tuple has rvalue reference data members when rvalues are used as arguments,…
