aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/meta/symbol.lux
blob: afdf77bf299a5219c0e46bd377a54b7b014fa769 (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
(.require
 [library
  [lux (.except nat int rev list type or and)
   ["$" documentation (.only documentation:)]
   [data
    [text (.only \n)
     ["%" \\format (.only format)]]]
   [macro
    ["[0]" template]]]]
 [\\library
  ["[0]" /]])

(documentation: /.module
  "The module part of a symbol.")

(documentation: /.short
  "The short part of a symbol.")

(.def .public documentation
  (.List $.Module)
  ($.module /._
            ""
            [..module
             ..short
             ($.default /.hash)
             ($.default /.equivalence)
             ($.default /.order)
             ($.default /.codec)]
            []))