blob: 7bf64829c8b637f4032455b2e4f48bc754917b74 (
plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
... This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
... If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
(.require
[library
[lux (.except)
[abstract
[equivalence (.only Equivalence)]
[monad (.only do)]]
[control
["<>" parser]]
[data
["[0]" text
["%" \\format]
["<[1]>" \\parser]]
[format
["[0]" xml (.only XML)
["<[1]>" \\parser (.only Parser)]]]]
[world
[time
["[0]" instant (.only Instant)]]]]]
["[0]" ///
["[1][0]" time (.only)
["[1]/[0]" date]
["[1]/[0]" time]]])
(type .public Time
///time.Time)
(def .public equivalence
(Equivalence Time)
///time.equivalence)
(def separator
".")
(def .public (format [date time])
(%.Format Time)
(%.format (///time/date.format date)
..separator
(///time/time.format time)))
(def .public parser
(<text>.Parser Time)
(do <>.monad
[date ///time/date.parser
_ (<text>.this ..separator)
time ///time/time.parser]
(in [date time])))
|