Shortcuts

Template Struct NthElement

Struct Documentation

template<size_t N, typename ...Ts>
struct ripple::detail::NthElement

Defines a class which defines the type of the Nth element in the Ts pack.

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

  • Ts: The types of the elements.

Public Types

using type = std::tuple_element_t<N, std::tuple<Ts...>>

Defines the type of the Ith element in the Ts pack.

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