aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/math/number/ratio.lux
blob: e99a0f21f8129656d86031f350d7d124f13dffac (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
41
42
43
44
45
(.module:
  [library
   [lux {"-" [private]}
    ["$" documentation {"+" [documentation:]}]
    [data
     ["[0]" text {"+" [\n]}
      ["%" format {"+" [format]}]]]
    [macro
     ["[0]" template]]]]
  [\\library
   ["[0]" /]])

(documentation: /.Ratio
  "An unsigned ratio of numbers.")

(documentation: /.ratio
  "Rational literals."
  [(ratio numerator denominator)]
  ["The denominator can be omitted if it is 1."
   (ratio numerator)])

(.def: .public documentation
  (.List $.Module)
  ($.module /._
            "Rational numbers."
            [..Ratio
             ..ratio
             ($.default /.nat)
             ($.default /.=)
             ($.default /.equivalence)
             ($.default /.<)
             ($.default /.<=)
             ($.default /.>)
             ($.default /.>=)
             ($.default /.order)
             ($.default /.+)
             ($.default /.-)
             ($.default /.*)
             ($.default /./)
             ($.default /.%)
             ($.default /.reciprocal)
             ($.default /.codec)
             ($.default /.addition)
             ($.default /.multiplication)]
            []))