1Time.IsoTimeOpts(3kaya) Kaya module reference Time.IsoTimeOpts(3kaya)
2
3
4
6 Time::IsoTimeOpts - Flags for the isoTime function
7
9 Time::IsoTimeOpts< >
10
11
12 = DateOnly()
13
14
15 | TimeOnly()
16
17
18 | WithTimeZone()
19
20
21 | ShortForm()
22
23
24 | TwoFields()
25
26
27 | UTC()
28
30 Flags for modifying the output of the Time.isoTime (3kaya) functions.
31
32
33 - DateOnly : Return only the date portion of the date and time
34
35
36 - TimeOnly : Return only the time portion of the date and time (ignored
37 if DateOnly is also specified)
38
39
40 - WithTimeZone : Include a timezone specification.
41
42
43 - ShortForm : Compact output by removing date and time delimiters (the
44 delimiter between the date and time parts is kept)
45
46
47 - TwoFields : Use ' ' rather than 'T' as the delimiter between the date
48 and time portions
49
50
51 - UTC : When converting from a Unix timestamp, return the time in the UTC
52 timezone (normally it is returned in the local timezone). When using a
53 Time.Time (3kaya) this flag has no effect.
54
56 Kaya standard library by Edwin Brady, Chris Morris and others
57 (kaya@kayalang.org). For further information see http://kayalang.org/
58
60 The Kaya standard library is free software; you can redistribute it
61 and/or modify it under the terms of the GNU Lesser General Public
62 License (version 2.1 or any later version) as published by the Free
63 Software Foundation.
64
65
66
67Kaya December 2010 Time.IsoTimeOpts(3kaya)