Tuple implementation which allows to force inline of the construction of the tuple. More...
#include <tupleMemory.hpp>

Public Types | |
| using | Args = std::tuple<Ts...> |
| Helper for getting the i-th element. | |
| using | Base = TupleMemoryBase<std::make_index_sequence<sizeof...(Ts)>, Ts...> |
| Abbreviation for base class. | |
Public Member Functions | |
| template<size_t i> | |
| inlineauto & | get () const |
| Get specific element. | |
| template<typename... TTs> | |
| inlineTupleMemory (TTs &&... v) | |
| Constructor. | |
| inlineTupleMemory (TupleMemory const &v)=default | |
| Constructor. | |
Tuple implementation which allows to force inline of the construction of the tuple.
This is just a minimal implementation which we need for ComputeExpression.
| Ts | Type of the stored elements. References are kept. |