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,
};
}Fields of this type
Source
pub fn Frexp(comptime T: type) type {
return struct {
significand: T,
exponent: i32,
};
}