aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/locale.lux
blob: f3d66353ed8cfaa88b1d64382b879302359f8186 (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
(.using
  [library
   [lux {"-" char}
    ["$" documentation {"+" documentation:}]
    [data
     [text
      ["%" format {"+" format}]]
     [collection
      ["[0]" list]]]]]
  ["[0]" / "_"
   ["[1][0]" language]
   ["[1][0]" territory]]
  [\\library
   ["[0]" /]])

(documentation: /.Locale
  "A description of a locale; with territory, (optional) language, and (optional) text-encoding.")

(documentation: /.locale
  ""
  [(locale language territory encoding)])

(.def: .public documentation
  (.List $.Module)
  ($.module /._
            ""
            [..Locale
             ..locale
             ($.default /.code)
             ($.default /.hash)
             ($.default /.equivalence)]
            [/language.documentation
             /territory.documentation]))