Edit

Share via


Vector64.SubtractSaturate<T> Method

Definition

Subtracts two vectors to compute their element-wise saturated difference.

public:
generic <typename T>
 static System::Runtime::Intrinsics::Vector64<T> SubtractSaturate(System::Runtime::Intrinsics::Vector64<T> left, System::Runtime::Intrinsics::Vector64<T> right);
public static System.Runtime.Intrinsics.Vector64<T> SubtractSaturate<T>(System.Runtime.Intrinsics.Vector64<T> left, System.Runtime.Intrinsics.Vector64<T> right);
static member SubtractSaturate : System.Runtime.Intrinsics.Vector64<'T> * System.Runtime.Intrinsics.Vector64<'T> -> System.Runtime.Intrinsics.Vector64<'T>
Public Function SubtractSaturate(Of T) (left As Vector64(Of T), right As Vector64(Of T)) As Vector64(Of T)

Type Parameters

T

The type of the elements in the vector.

Parameters

left
Vector64<T>

The vector to from which right will be subtracted.

right
Vector64<T>

The vector to subtract from left.

Returns

The element-wise saturated difference of left and right.

Applies to