Function getSecondsIntoMinute [src]

the number of seconds past the start of the minute (0 to 59)

Prototype

pub fn getSecondsIntoMinute(self: DaySeconds) u6

Parameters

self: DaySeconds

Source

pub fn getSecondsIntoMinute(self: DaySeconds) u6 { return math.comptimeMod(self.secs, 60); }