()
| 177 | } |
| 178 | |
| 179 | func (self *ZeroCopySource) NextAddress() (data Address, eof bool) { |
| 180 | var buf []byte |
| 181 | buf, eof = self.NextBytes(ADDR_LEN) |
| 182 | if eof { |
| 183 | return |
| 184 | } |
| 185 | copy(data[:], buf) |
| 186 | |
| 187 | return |
| 188 | } |
| 189 | |
| 190 | func (self *ZeroCopySource) NextI128() (data I128, eof bool) { |
| 191 | var buf []byte |
no test coverage detected