(w io.Writer, n int64)
| 115 | } |
| 116 | |
| 117 | func writeSignedInt(w io.Writer, n int64) (bool, error) { |
| 118 | var a [20]byte |
| 119 | _, err := w.Write(strconv.AppendInt(a[:0], n, 10)) |
| 120 | return true, err |
| 121 | } |
| 122 | |
| 123 | func writeUnsignedInt(w io.Writer, n uint64) (bool, error) { |
| 124 | var a [20]byte |