blob: e1379b85c390c70a0e84620b8d847e54dd416a15 (
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
|
(.module:
[library
[lux #*
["$" documentation (#+ documentation:)]
[data
[text (#+ \n)
["%" format (#+ format)]]]
[macro
["." template]]]]
[\\library
["." /]])
(documentation: /.complement
(format "Generates the complement of a predicate."
\n "That is a predicate that returns the oposite of the original predicate."))
(.def: .public documentation
(.List $.Module)
($.module /._
""
[..complement
($.default /.no)
($.default /.yes)
($.default /.off)
($.default /.on)
($.default /.equivalence)
($.default /.hash)
($.default /.disjunction)
($.default /.conjunction)
($.default /.codec)]
[]))
|