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

Syntax

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

Attributes

TypeDescription
PureAttribute
MethodImplAttribute

Parameters

NameTypeDescription
originaluintThe bits used for the mantissa of the float.
exponentintThe exponent of the float.

Return Value

TypeDescription
float