Struct RefTuple<T>
A tuple of multiple references.
public ref struct RefTuple<T>
Type Parameters
T
- Inherited Members
Fields
Item1
public Ref<T> Item1
Field Value
- Ref<T>
Methods
Deconstruct(out Ref<T>)
Allows tuple deconstruction syntax to be used.
public void Deconstruct(out Ref<T> @ref)
Parameters
refRef<T>
Operators
implicit operator Ref<T>(RefTuple<T>)
public static implicit operator Ref<T>(RefTuple<T> tuple)
Parameters
tupleRefTuple<T>
Returns
- Ref<T>