aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/world/time/date.lux
blob: 559ea4f03354a1eedd95c634628c3255f80bc567 (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
... 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)
   ["$" documentation]
   [data
    ["[0]" text (.only \n)
     ["%" \\format (.only format)]]]]]
 [\\library
  ["[0]" /]])

(def .public documentation
  (List $.Documentation)
  (list ($.module /._
                  "")

        ($.definition /.invalid_day)
        ($.definition /.epoch)
        ($.definition /.year)
        ($.definition /.month)
        ($.definition /.day_of_month)
        ($.definition /.equivalence)
        ($.definition /.order)
        ($.definition /.invalid_month)
        ($.definition /.parser)
        ($.definition /.days)
        ($.definition /.of_days)
        ($.definition /.enum)

        ($.definition /.Date
          "A date specified as a year/month/day triplet.")

        ($.definition /.date
          "A date, within the allowed limits."
          ($.example (date year month day_of_month)))

        ($.definition /.codec
          (format "Based on ISO 8601."
                  \n "For example: 2017-01-15"))
        ))