()
| 153 | } |
| 154 | |
| 155 | func (self *ZeroCopySource) NextInt64() (data int64, eof bool) { |
| 156 | var val uint64 |
| 157 | val, eof = self.NextUint64() |
| 158 | return int64(val), eof |
| 159 | } |
| 160 | |
| 161 | func (self *ZeroCopySource) NextInt16() (data int16, eof bool) { |
| 162 | var val uint16 |
no test coverage detected