MathNTruncateTNumeric Method
Calculates the integral part of a specified number.
Namespace: Jodosoft.NumericsAssembly: Jodosoft.Numerics (in Jodosoft.Numerics.dll) Version: 2.0
public static TNumeric Truncate<TNumeric>(
TNumeric x
)
where TNumeric : struct, new(), INumeric<TNumeric>
Public Shared Function Truncate(Of TNumeric As {Structure, New, INumeric(Of TNumeric)}) (
x As TNumeric
) As TNumeric
public:
generic<typename TNumeric>
where TNumeric : value class, gcnew(), INumeric<TNumeric>
static TNumeric Truncate(
TNumeric x
)
static member Truncate :
x : 'TNumeric -> 'TNumeric when 'TNumeric : struct, new() and INumeric<'TNumeric>
- x TNumeric
- A number to truncate.
- TNumeric
TNumericThe integral part of
x; that is, the number that remains after any fractional digits have been discarded.
This method may return
NaN or Infinity.
If
NaN or Infinity cannot be represented by
TNumeric,
then this method may throw an
ArithmeticException.