Half.Min(Int16, Int16) Method

Definition

Returns the smaller of two half-precision float values (the value closest to negative infinity).

[Android.Runtime.Register("min", "(SS)S", "", ApiSince=26)]
public static short Min (short x, short y);
[<Android.Runtime.Register("min", "(SS)S", "", ApiSince=26)>]
static member Min : int16 * int16 -> int16

Parameters

x
Int16

The first half-precision value

y
Int16

The second half-precision value

Returns

The smaller of the two specified half-precision values

Attributes

Remarks

Returns the smaller of two half-precision float values (the value closest to negative infinity). Special values are handled in the following ways: <ul> <li>If either value is NaN, the result is NaN</li> <li>#NEGATIVE_ZERO is smaller than #POSITIVE_ZERO</li> </ul>

Java documentation for android.util.Half.min(short, short).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to