Function getMinutesIntoHour [src]

the number of minutes past the hour (0 to 59)

Prototype

pub fn getMinutesIntoHour(self: DaySeconds) u6

Parameters

self: DaySeconds

Source

pub fn getMinutesIntoHour(self: DaySeconds) u6 { return @as(u6, @intCast(@divTrunc(@mod(self.secs, 3600), 60))); }