BigFloat.Ceiling Method

Rounds a number up to the nearest integer.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static BigFloat Ceiling(
	BigFloat value
)

Parameters

value  BigFloat
A BigFloat value.

Return Value

BigFloat
The BigFloat value that equals the smallest integer greater than or equal to value.

Implements

IFloatingPoint<TSelf>.Ceiling(TSelf)

Exceptions

ArgumentNullException

value is null.

See Also