v/vlib/time
Daniel Däschle 54bbc00493
fmt: remove space in front of ? and ! (#14366)
2022-05-13 10:10:39 +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 all: replace "NB:" with "Note:" (docs/comments) 2022-03-06 20:01:22 +03:00
chrono.c.v time: move C backend specific code into .c.v files (#11125) 2021-08-10 14:34:53 +03:00
chrono.v
custom_format_test.v
duration_test.v
format.v time: update doc comments (#14359) 2022-05-13 10:10:38 +02:00
operator.v
operator_test.v
parse.c.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 10:10:39 +02:00
parse.js.v v.gen.js: fix method calls and other codegen parts, rand module compiles (#11205) 2021-08-18 11:33:37 +03:00
parse.v time: add missing doc string to parse.v (#13933) 2022-04-05 13:21:37 +03:00
parse_test.v time: let time.parse_rfc3339('2015-01-06T15:47:32.080254511Z') succeed (dockerd timestamps, Go's RFC3339Nano). 2022-05-08 14:04:00 +02:00
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: update doc comments (#14359) 2022-05-13 10:10:38 +02:00
time.js.v
time.v time: update doc comments (#14359) 2022-05-13 10:10:38 +02:00
time_addition_test.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 10:10:39 +02:00
time_darwin.c.v all: replace "NB:" with "Note:" (docs/comments) 2022-03-06 20:01:22 +03:00
time_format_test.v
time_js.js.v
time_linux.c.v
time_nix.c.v time: fix repetitive time.now().local().local().local() offsetting the time further and further (#13861) 2022-04-01 00:11:17 +03:00
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())