v/vlib/time
jeffmikels a60b381d5e
docs: adding skeleton README.md files for all vlib modules (#13034)
2022-01-05 18:06:08 +02:00
..
misc
README.md docs: adding skeleton README.md files for all vlib modules (#13034) 2022-01-05 18:06:08 +02:00
Y2K38_test.v
chrono.c.v
chrono.v
duration_test.v
format.v all: update copyright year 2022-01-04 12:21:12 +03:00
operator.v
operator_test.v
parse.c.v all: update copyright year 2022-01-04 12:21:12 +03:00
parse.js.v
parse.v all: update copyright year 2022-01-04 12:21:12 +03:00
parse_test.v
private_test.v
stopwatch.v all: update copyright year 2022-01-04 12:21:12 +03:00
stopwatch_test.v
time.c.v all: update copyright year 2022-01-04 12:21:12 +03:00
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 all: update copyright year 2022-01-04 12:21:12 +03:00
time_solaris.c.v
time_test.v
time_windows.c.v all: update copyright year 2022-01-04 12:21:12 +03:00
unix.v all: update copyright year 2022-01-04 12:21:12 +03:00

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())