all repos — min @ 096d17f697e672f20468254dbcf9b0973dab326d

A small but practical concatenative programming language.

site/contents/reference-time.md

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
-----
content-type: "page"
title: "time Module"
-----
{@ _defs_.md || 0 @}

{#op||now||{{null}}||{{flt}}||
Returns the current time as Unix timestamp with microseconds. #}

{#op||timestamp||{{null}}||{{i}}||
Returns the current time as Unix timestamp. #}
  
{#op||timeinfo||{{i}}||{{tinfo}}||
Returns a timeinfo dictionary from timestamp {{i}}. #}
  
{#op||to-timestamp||{{tinfo}}||{{i}}||
Converts the timeinfo dictionary {{tinfo}} to the corresponding Unix timestamp. #}
  
{#op||datetime||{{i}}||{{s}}||
Returns an ISO 8601 string representing the combined date and time in UTC of timestamp {{i}}. #}


{#op||tformat||{{i}} {{s}}||{{s}}||
> Formats timestamp {{i}} using string {{s}}.
> 
> > %tip%
> > Tip
> > 
> > For information on special characters in the format string, see the [format](https://nim-lang.org/docs/times.html#format,TimeInfo,string) nim method. #}