aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/world/net.lux
blob: 5f309dcb49143d4d8f7a919ecce18004415b4ed9 (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
(.require
 [library
  [lux (.except)
   [program (.only program:)]
   ["$" documentation]
   ["[0]" debug]
   [control
    ["[0]" io]]]]
 [\\library
  ["[0]" /]]
 ["[0]" /
  ["[1][0]" uri]
  ["[1][0]" http
   ["[1]/[0]" client]
   ["[1]/[0]" status]]])

(.def .public documentation
  (.List $.Module)
  ($.module /._
            ""
            [($.default /.Location)

             ($.documentation /.Address
               "A TCP/IP address.")

             ($.documentation /.Port
               "A TCP/IP port.")

             ($.documentation /.URL
               "A Uniform Resource Locator.")]
            [/uri.documentation
             /http/client.documentation
             /http/status.documentation]))