DoxigAlpha

Frexp

Fields of this type

Fields

#
significand:T
exponent:i32

Source

Implementation

#
pub fn Frexp(comptime T: type) type {
    return struct {
        significand: T,
        exponent: i32,
    };
}