blob: 757cbea9fc6c1ca5da2d87dce35e7ed981d4ae5b (
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
|
(.using
[library
[lux "*"
["$" documentation (.only documentation:)]
[data
[text (.only \n)
["%" format (.only format)]]]
[macro
["[0]" template]]]]
[\\library
["[0]" /]])
(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)]
[]))
|