Sleep

Sleep :: # (opaque)

Pause the current process for a requested duration.

millis! : U64 => {  }

Sleep for the specified number of milliseconds.

seconds! : F64 => {  }

Sleep for the specified number of seconds.

The duration is truncated to whole milliseconds, so Sleep.seconds!(1.5) sleeps for 1500 ms. Negative and NaN durations return immediately, and durations past U64.highest milliseconds saturate there.