mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-16 00:46:03 +08:00
18 lines
481 B
Plaintext
18 lines
481 B
Plaintext
tuple
|
|
|
|
C++11 and above
|
|
A fixed-size collection of heterogeneous values.
|
|
STL equivalent: std::tuple
|
|
|
|
std::tuple
|
|
____________________________________________________________________________________________________
|
|
template <typename T>
|
|
struct is_tuple
|
|
Defined as etl::true_type if T is an etl::tuple, otherwise etl::false_type.
|
|
____________________________________________________________________________________________________
|
|
Constructor
|
|
|
|
etl::tuplestack<typename... TTypes>();
|
|
|
|
|