mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-18 21:40:32 +00:00
clarify what a 'monotonic' timestamp is (#18163)
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
##[
|
||||
The `std/monotimes` module implements monotonic timestamps. A monotonic
|
||||
timestamp represents the time that has passed since some system defined
|
||||
point in time. The monotonic timestamps are guaranteed to always increase,
|
||||
point in time. The monotonic timestamps are guaranteed not to decrease,
|
||||
meaning that that the following is guaranteed to work:
|
||||
]##
|
||||
|
||||
@@ -18,9 +18,8 @@ runnableExamples:
|
||||
import std/os
|
||||
|
||||
let a = getMonoTime()
|
||||
sleep(10)
|
||||
let b = getMonoTime()
|
||||
assert a < b
|
||||
assert a <= b
|
||||
|
||||
##[
|
||||
This is not guaranteed for the `times.Time` type! This means that the
|
||||
|
||||
Reference in New Issue
Block a user