DoxigAlpha

Modf

Fields of this type

Fields

#
fpart:T
ipart:T

Source

Implementation

#
pub fn Modf(comptime T: type) type {
    return struct {
        fpart: T,
        ipart: T,
    };
}