System::ValueTuple::Item method

ValueTuple::Item() method

Gets the reference to value of the ValueTuple object’s component.

template<std::size_t> std::tuple_element_t<Index, tuple_t> & System::ValueTuple<Args>::Item()
ParameterDescription
IndexThe number of item the class should return.

See Also

ValueTuple::Item() const method

Gets the value of the ValueTuple object’s component.

template<std::size_t> const std::tuple_element_t<Index, tuple_t> & System::ValueTuple<Args>::Item() const
ParameterDescription
IndexThe number of item the class should return.

See Also