Type Function Frexp [src]
Alias for std.math.frexp.Frexp
Prototype
pub fn Frexp(comptime T: type) type Parameters
T: type Source
pub fn Frexp(comptime T: type) type {
return struct {
significand: T,
exponent: i32,
};
} Alias for std.math.frexp.Frexp
pub fn Frexp(comptime T: type) type T: type pub fn Frexp(comptime T: type) type {
return struct {
significand: T,
exponent: i32,
};
}