Template Struct TupleStorage¶
Defined in File basic_tuple_.hpp
Struct Documentation¶
-
template<typename
Is
, typename ...Ts
>
structTupleStorage
¶ Implementation of the storage for a tuple.
The elements which are stored are laid out in memory in the same order in which they appear in the variadic pack:
TupleStorage<Indices, float, int, double> ... // Laid out as follows: float // 4 bytes int // 4 bytes double // 8 bytes
- Template Parameters
Is
: The indices of the tuple elements.Ts
: The types of the tuple elements.