Shortcuts

Template Struct TupleStorage

Struct Documentation

template<typename Is, typename ...Ts>
struct TupleStorage

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.

Docs

Access comprehensive developer documentation for Ripple

View Docs

Tutorials

Get tutorials to help with understand all features

View Tutorials

Examples

Find examples to help get started

View Examples