Half.Ceil(Int16) 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.
Returns the smallest half-precision float value toward negative infinity greater than or equal to the specified half-precision float value.
[Android.Runtime.Register("ceil", "(S)S", "", ApiSince=26)]
public static short Ceil (short h);
[<Android.Runtime.Register("ceil", "(S)S", "", ApiSince=26)>]
static member Ceil : int16 -> int16
Parameters
- h
- Int16
A half-precision float value
Returns
The smallest half-precision float value toward negative infinity greater than or equal to the specified half-precision float value
- Attributes
Remarks
Returns the smallest half-precision float value toward negative infinity greater than or equal to the specified half-precision float value. Special values are handled in the following ways: <ul> <li>If the specified half-precision float is NaN, the result is NaN</li> <li>If the specified half-precision float is infinity (negative or positive), the result is infinity (with the same sign)</li> <li>If the specified half-precision float is zero (negative or positive), the result is zero (with the same sign)</li> </ul>
Java documentation for android.util.Half.ceil(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.