1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/time
2022-05-11 16:55:19 +03:00
..
misc
chrono.c.v
chrono.v
custom_format_test.v time: add custom formatter (#14202) 2022-04-29 15:57:08 +03:00
duration_test.v
format.v time: update doc comments (#14359) 2022-05-11 16:55:19 +03:00
operator_test.v
operator.v
parse_test.v time: let time.parse_rfc3339('2015-01-06T15:47:32.080254511Z') succeed (dockerd timestamps, Go's RFC3339Nano). 2022-05-08 14:54:57 +03:00
parse.c.v time: update doc comments (#14359) 2022-05-11 16:55:19 +03:00
parse.js.v
parse.v
private_test.v
README.md
relative_test.v time: relative update (#14240) 2022-05-01 10:47:05 +03:00
stopwatch_test.v
stopwatch.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
time.c.v time: update doc comments (#14359) 2022-05-11 16:55:19 +03:00
time.js.v
time.v time: update doc comments (#14359) 2022-05-11 16:55:19 +03:00
unix.v
Y2K38_test.v

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