blob: e7022c20e861cc14ef11247ea24532355ee789d6 (
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
|
(.module:
[library
[lux (#- private)
["$" documentation (#+ documentation:)]
[data
["." text (#+ \n)
["%" format (#+ format)]]]
[macro
["." template]]]]
[\\library
["." /]])
(documentation: /.I8
"A 8-bit integer.")
(.def: .public documentation
(.List $.Module)
($.module /._
""
[..I8
($.default /.equivalence)
($.default /.width)
($.default /.i8)
($.default /.i64)]
[]))
|