v/vlib/time
David 'Epper' Marshall bf954cc9bc
time: relative update (#14240)
2022-05-01 19:25:52 +02:00
..
misc
README.md
Y2K38_test.v
chrono.c.v
chrono.v
custom_format_test.v time: add custom formatter (#14202) 2022-04-29 21:38:24 +02:00
duration_test.v
format.v time: relative update (#14240) 2022-05-01 19:25:52 +02:00
operator.v
operator_test.v
parse.c.v all: byte => u8 2022-04-17 12:14:27 +02:00
parse.js.v
parse.v time: add missing doc string to parse.v (#13933) 2022-04-05 13:21:37 +03:00
parse_test.v
private_test.v
relative_test.v time: relative update (#14240) 2022-05-01 19:25:52 +02:00
stopwatch.v
stopwatch_test.v
time.c.v time: implement Time.strftime(fmt string) as a wrapper for strftime(3) (#13898) 2022-04-02 18:33:37 +03:00
time.js.v
time.v time: relative update (#14240) 2022-05-01 19:25:52 +02:00
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: implement Time.strftime(fmt string) as a wrapper for strftime(3) (#13898) 2022-04-02 18:33:37 +03:00
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())