Vector128.SubtractSaturate<T> Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Subtracts two vectors to compute their element-wise saturated difference.
public:
generic <typename T>
static System::Runtime::Intrinsics::Vector128<T> SubtractSaturate(System::Runtime::Intrinsics::Vector128<T> left, System::Runtime::Intrinsics::Vector128<T> right);
public static System.Runtime.Intrinsics.Vector128<T> SubtractSaturate<T>(System.Runtime.Intrinsics.Vector128<T> left, System.Runtime.Intrinsics.Vector128<T> right);
static member SubtractSaturate : System.Runtime.Intrinsics.Vector128<'T> * System.Runtime.Intrinsics.Vector128<'T> -> System.Runtime.Intrinsics.Vector128<'T>
Public Function SubtractSaturate(Of T) (left As Vector128(Of T), right As Vector128(Of T)) As Vector128(Of T)
Type Parameters
- T
The type of the elements in the vector.
Parameters
- left
- Vector128<T>
The vector to from which right will be subtracted.
- right
- Vector128<T>
The vector to subtract from left.
Returns
The element-wise saturated difference of left and right.
Exceptions
The type of left and right (T) is not supported.