SleepMinutes
Pauses the current thread for a number of minutes.
Module: Std::Time
Signature
rux
func SleepMinutes(minutes: uint32);Parameters
| Name | Type | Description |
|---|---|---|
minutes | uint32 | Number of minutes to sleep. |
Description
Convenience wrapper over SleepSeconds(minutes * 60).
WARNING
No-op on macOS — see the module overview.
Example
rux
import Std::Time;
Time::SleepMinutes(1u32);See also
Std::Time— module overviewSleepMs,SleepSeconds— finer units