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

(.def .public documentation
  (.List $.Module)
  ($.module /._
            ""
            [($.definition /.equivalence)
             ($.definition /.order)
             ($.definition /.enum)
             ($.definition /.not_a_day_of_the_week)
             ($.definition /.codec)
             ($.definition /.number)
             ($.definition /.invalid_day)
             ($.definition /.by_number)
             ($.definition /.hash)

             ($.definition /.Day
               "A day of the week.")

             ($.definition /.week
               "All the days, ordered by when they come in a week.")]
            []))