(buf []byte, value bool)
| 793 | } |
| 794 | |
| 795 | func msgpackWriteBool(buf []byte, value bool) []byte { |
| 796 | if value { |
| 797 | return append(buf, 0xc3) |
| 798 | } |
| 799 | return append(buf, 0xc2) |
| 800 | } |
| 801 | |
| 802 | // Hand-written commonData encoding functions for nodes whose non-bool data |
| 803 | // members cannot be automatically encoded by the generator. Each function |
no test coverage detected