Vector64.ClampNative<T> 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
플랫폼별 동작 NaN 을 사용하여 최소값과 최대값 사이의 벡터를 제한합니다 NegativeZero.
public:
generic <typename T>
static System::Runtime::Intrinsics::Vector64<T> ClampNative(System::Runtime::Intrinsics::Vector64<T> value, System::Runtime::Intrinsics::Vector64<T> min, System::Runtime::Intrinsics::Vector64<T> max);
public static System.Runtime.Intrinsics.Vector64<T> ClampNative<T>(System.Runtime.Intrinsics.Vector64<T> value, System.Runtime.Intrinsics.Vector64<T> min, System.Runtime.Intrinsics.Vector64<T> max);
static member ClampNative : System.Runtime.Intrinsics.Vector64<'T> * System.Runtime.Intrinsics.Vector64<'T> * System.Runtime.Intrinsics.Vector64<'T> -> System.Runtime.Intrinsics.Vector64<'T>
Public Function ClampNative(Of T) (value As Vector64(Of T), min As Vector64(Of T), max As Vector64(Of T)) As Vector64(Of T)
형식 매개 변수
- T
벡터에 있는 요소의 형식입니다.
매개 변수
- value
- Vector64<T>
제한할 벡터입니다.
- min
- Vector64<T>
최소값입니다.
- max
- Vector64<T>
최대값입니다.
반품
제한된 벡터입니다.