v/vlib/time
Tim Basel 9d0a5942ac
builtin: change IError `msg` and `code` to methods + fix vlib, add a deprecation notice for the old usages (#13041)
2022-02-11 15:52:33 +02:00
..
misc
README.md
Y2K38_test.v
chrono.c.v
chrono.v
duration_test.v
format.v
operator.v
operator_test.v
parse.c.v
parse.js.v
parse.v
parse_test.v
private_test.v
stopwatch.v
stopwatch_test.v
time.c.v
time.js.v
time.v
time_addition_test.v
time_darwin.c.v
time_format_test.v
time_js.js.v
time_linux.c.v
time_nix.c.v
time_solaris.c.v
time_test.v
time_windows.c.v
unix.v

README.md

Description:

time provides utilities for working with time and dates:

  • parsing of time values expressed in one of the commonly used standard time/date formats
  • formatting of time values
  • arithmetic over times/durations
  • converting between local time and UTC (timezone support)
  • stop watches for accurately measuring time durations
  • sleeping for a period of time

Examples:

import time

println(time.now())