MCPcopy Create free account
hub / github.com/apache/fory / ReadInt64

Method ReadInt64

go/fory/buffer.go:390–392  ·  view source on GitHub ↗

ReadInt64 reads an int64 and sets error on bounds violation

(err *Error)

Source from the content-addressed store, hash-verified

388
389// ReadInt64 reads an int64 and sets error on bounds violation
390func (b *ByteBuffer) ReadInt64(err *Error) int64 {
391 return int64(b.ReadUint64(err))
392}
393
394// ReadFloat32 reads a float32 and sets error on bounds violation
395func (b *ByteBuffer) ReadFloat32(err *Error) float32 {

Callers 15

testBufferFunction · 0.95
testMurmurHash3Function · 0.95
readSharedTypeMetaMethod · 0.45
readMetaStringMethod · 0.45
ReadInt64SliceFunction · 0.45
ReadUint64SliceFunction · 0.45
ReadIntSliceFunction · 0.45

Calls 2

ReadUint64Method · 0.95
int64Function · 0.50