Math.NextDown Method

Definition

Overloads

NextDown(Double)

Returns the floating-point value adjacent to d in the direction of negative infinity.

NextDown(Single)

Returns the floating-point value adjacent to f in the direction of negative infinity.

NextDown(Double)

Returns the floating-point value adjacent to d in the direction of negative infinity.

[Android.Runtime.Register("nextDown", "(D)D", "", ApiSince=24)]
public static double NextDown (double d);
[<Android.Runtime.Register("nextDown", "(D)D", "", ApiSince=24)>]
static member NextDown : double -> double

Parameters

d
Double

starting floating-point value

Returns

The adjacent floating-point value closer to negative infinity.

Attributes

Remarks

Java documentation for java.lang.Math.nextDown(double).

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

NextDown(Single)

Returns the floating-point value adjacent to f in the direction of negative infinity.

[Android.Runtime.Register("nextDown", "(F)F", "", ApiSince=24)]
public static float NextDown (float f);
[<Android.Runtime.Register("nextDown", "(F)F", "", ApiSince=24)>]
static member NextDown : single -> single

Parameters

f
Single

starting floating-point value

Returns

The adjacent floating-point value closer to negative infinity.

Attributes

Remarks

Java documentation for java.lang.Math.nextDown(float).

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