IntoFloatWithExponent(ulong, int) Method
Converts the given ulong into a double with the given exponent.
Namespace
RandN.Implementation
Containing Type
FloatUtils

Syntax

[Pure]
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static double IntoFloatWithExponent(this ulong original, int exponent)

Attributes

TypeDescription
PureAttribute
MethodImplAttribute

Parameters

NameTypeDescription
originalulongThe bits used for the mantissa of the double.
exponentintThe exponent of the double.

Return Value

TypeDescription
double