Pt 164325512 variant constants #130

Merged
zxq9 merged 9 commits from PT-164325512-variant-constants into fortuna 2019-03-01 21:05:25 +09:00
Showing only changes of commit b4378de029 - Show all commits

View File

@ -91,13 +91,22 @@ Immediate values can be of 9 types:
`(| 42 | 12 | ( "foo", 12) |)` `(| 42 | 12 | ( "foo", 12) |)`
Where Where
Digits: [0123456789]
Hexdigits: [0123456789abcdef] Digits: [0123456789]
base58char: [123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]
Characters any printable ascii character 0..255 (except " no quoting yet) Hexdigits: [0123456789abcdef]
Key: any value except for a map
Bits: 01 or space base58char: [123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]
Elements: Nothing or Value , Elements
Size: Digits Characters: any printable ascii character 0..255 (except " no quoting yet)
Tag: Digits
Key: any value except for a map
Bits: 01 or space
Elements: Nothing or Value , Elements
Size: Digits (0 < Size < 256)
Tag: Digits (0 =< Tag < Size)