ValueTuple

ValueTuple class

Class that represents a ValueTuple data structure.

template<typename ...>class ValueTuple : public System::Details::BoxableObjectBase

Methods

MethodDescription
bool Equals(SharedPtr<Object>)Determines if the current and the specified objects are identical.
int32_t GetHashCode() const
const TypeInfo& GetType() const
std::tuple_element<Index, tuple_t>::type& Item()Gets the reference to value of the ValueTuple object’s component.
const std::tuple_element<Index, tuple_t>::type& Item() constGets the value of the ValueTuple object’s component.
ValueTuple& operator=(const ValueTuple<OtherArgs…>&)
bool operator==(const ValueTuple&) const
System::String ToString() const
static const TypeInfo& Type()Returns a reference to the TypeInfo object representing the ValueTuple class type information.
ValueTuple()
ValueTuple(Args…)Constructs a tuple object.

See Also