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, }; }