![]() |
Stan Math Library
5.1.0
Automatic Differentiation
|
Helper template to deduce the correct type for tuple elements.
This template determines the type to store in a tuple when forwarding arguments.
T | The type to deduce. |
Definition at line 29 of file make_holder_tuple.hpp.
#include <make_holder_tuple.hpp>
Public Types | |
using | type = std::conditional_t< std::is_rvalue_reference_v< T >, std::decay_t< T >, T && > |