#include <Rodin/ForwardDecls.h>
template<class ... Ts>
Tuple class
Forward declaration of the Tuple template class.
| Template parameters | |
|---|---|
| Ts | Types of the tuple elements. |
| Specialization | Description |
|---|---|
| Tuple<> | Empty compile-time tuple, used as the terminal case for recursive tuple algorithms. |
| Tuple<T, Ts...> | Non-empty compile-time tuple storing a head element and the remaining tail. |