ReadOnlySpanPair<TFirst, TSecond>.Deconstruct Method

Deconstructs the pair into two ReadOnlySpan<T> instances.

Definition

Namespace: Ookii.Common
Assembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
C#
public void Deconstruct(
	out ReadOnlySpan<TFirst> first,
	out ReadOnlySpan<TSecond> second
)

Parameters

first  ReadOnlySpan<TFirst>
Receives the first value.
second  ReadOnlySpan<TSecond>
Receives the second value.

See Also