MCPcopy Create free account
hub / github.com/DNAProject/DNA / NextI128

Method NextI128

common/zero_copy_source.go:190–199  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

188}
189
190func (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
201func (self *ZeroCopySource) NextHash() (data Uint256, eof bool) {
202 var buf []byte

Callers 1

DecodeValueFunction · 0.80

Calls 1

NextBytesMethod · 0.95

Tested by

no test coverage detected