Shortcuts

Template Struct TupleElement

Struct Documentation

template<size_t I, typename T>
struct ripple::detail::TupleElement

The TupleElement class get the type of the element at index I in a tuple.

Template Parameters
  • I: The index of the element to get type type of.

  • T: The type of the tuple.

Public Types

using DataType = decltype(std::declval<T>().data())

Defines the type of the data for the tuple type T.

using Type = decltype(type_extractor<I>(static_cast<std::remove_reference_t<DataType>&&>(std::declval<T>().data())))

Defines the type of the element at index Idx.

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