aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/data/bit.lux
blob: 25b1262d226ae02d0963cc10724f654a74be8687 (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
(.require
 [library
  [lux (.except)
   ["$" documentation]
   [data
    [text (.only \n)
     ["%" \\format (.only format)]]]]]
 [\\library
  ["[0]" /]])

(.def .public documentation
  (.List $.Module)
  ($.module /._
            ""
            [($.default /.no)
             ($.default /.yes)
             ($.default /.off)
             ($.default /.on)
             ($.default /.equivalence)
             ($.default /.hash)
             ($.default /.disjunction)
             ($.default /.conjunction)
             ($.default /.codec)

             ($.documentation /.complement
               (format "Generates the complement of a predicate."
                       \n "That is a predicate that returns the oposite of the original predicate."))]
            []))