aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/math.lux
blob: 7c74692ca0d000053fca769918db09946f31c8a9 (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
(.module:
  [library
   [lux (#- char)
    ["$" documentation (#+ documentation:)]
    [data
     [text
      ["%" format (#+ format)]]
     [collection
      ["." list]]]]]
  ["." / #_
   ["#." infix]
   ... ["#." modulus]
   ... ["#." modular]
   ... ["#." number]
   ["#." logic]]
  [\\library
   ["." /]])

(.def: .public documentation
  (.List $.Module)
  ($.module /._
            ""
            []
            [/infix.documentation
             ... /modulus.documentation
             ... /modular.documentation
             ... /number.documentation
             /logic.documentation]))