(buf []byte, v uint32)
| 740 | } |
| 741 | |
| 742 | func appendUint32(buf []byte, v uint32) []byte { |
| 743 | var tmp [4]byte |
| 744 | jsonEndian.PutUint32(tmp[:], v) |
| 745 | return append(buf, tmp[:]...) |
| 746 | } |
| 747 | |
| 748 | func appendBinaryNumber(buf []byte, x json.Number) (JSONTypeCode, []byte, error) { |
| 749 | // The type interpretation process is as follows: |
no outgoing calls