aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/world.lux
blob: 4f5fb72259c36b3d19d15956ec500c2bacd4df87 (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
... 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]
   ["[0]" debug]
   [control
    ["[0]" io]]
   [data
    [collection
     ["[0]" list (.use "[1]#[0]" monoid)]]]]]
 ["[0]" /
  ["[1][0]" console]
  ["[1][0]" file]
  ["[1][0]" input
   ["[1]/[0]" keyboard]]
  ["[1][0]" net]
  ["[1][0]" output
   ["[1]/[0]" video
    ["[1]/[0]" resolution]]]
  ["[1][0]" environment]
  ["[1][0]" shell]
  ["[1][0]" time]
  ["[1][0]" locale]])

(def .public documentation
  (List $.Documentation)
  (all list#composite
       /console.documentation
       /file.documentation
       /input/keyboard.documentation
       /net.documentation
       /output/video/resolution.documentation
       /environment.documentation
       /shell.documentation
       /time.documentation
       /locale.documentation
       ))