()
| 188 | } |
| 189 | |
| 190 | func (self *ZeroCopySource) NextI128() (data I128, eof bool) { |
| 191 | var buf []byte |
| 192 | buf, eof = self.NextBytes(I128_SIZE) |
| 193 | if eof { |
| 194 | return |
| 195 | } |
| 196 | copy(data[:], buf) |
| 197 | |
| 198 | return |
| 199 | } |
| 200 | |
| 201 | func (self *ZeroCopySource) NextHash() (data Uint256, eof bool) { |
| 202 | var buf []byte |
no test coverage detected