Int64 encodes and writes an int64 value into the element bitstream.
(x int64)
| 277 | |
| 278 | // Int64 encodes and writes an int64 value into the element bitstream. |
| 279 | func (w *Encoder) Int64(x int64) { |
| 280 | w.Sync(SyncInt64) |
| 281 | w.rawVarint(x) |
| 282 | } |
| 283 | |
| 284 | // Uint64 encodes and writes a uint64 value into the element bitstream. |
| 285 | func (w *Encoder) Uint64(x uint64) { |