Table of Contents

Method Widen_Base_NRef2

Namespace
Zyl.VectorTraits.Impl.AVector
Assembly
VectorTraits.dll

Widen_Base_NRef2(Vector<int>, out Vector<long>, out Vector<long>)

Widens a Vector<T> into two Vector<T> instances (将一个 Vector<T> 扩宽为两个 Vector<T> 实例). Mnemonic: element_ref(i, lower, upper) := widen(source[i]).

[Obsolete("This method is for testing purposes only. Please use Widen_Base instead.")]
public static void Widen_Base_NRef2(Vector<int> source, out Vector<long> lower, out Vector<long> upper)

Parameters

source Vector<int>

The vector whose elements are to be widened (要扩宽其元素的向量).

lower Vector<long>

When this method returns, contains the widened elements from lower indices in the source vector (当此方法返回时,包含源向量中来自较低下标的扩宽元素).

upper Vector<long>

When this method returns, contains the widened elements from upper indices in the source vector (当此方法返回时,包含源向量中来自较高下标的扩宽元素).

See Also