Int16.Clamp(Int16, Int16, Int16) Method

Definition

Clamps a value to an inclusive minimum and maximum value.

public:
 static short Clamp(short value, short min, short max) = System::Numerics::INumber<short>::Clamp;
public static short Clamp (short value, short min, short max);
static member Clamp : int16 * int16 * int16 -> int16
Public Shared Function Clamp (value As Short, min As Short, max As Short) As Short

Parameters

value
Int16

The value to clamp.

min
Int16

The inclusive minimum to which value should clamp.

max
Int16

The inclusive maximum to which value should clamp.

Returns

The result of clamping value to the inclusive range of min and max.

Implements

Applies to