MCPcopy Create free account
hub / github.com/apache/iotdb-client-go / bytesToInt64

Function bytesToInt64

client/utils.go:192–197  ·  view source on GitHub ↗
(bys []byte)

Source from the content-addressed store, hash-verified

190}
191
192func bytesToInt64(bys []byte) int64 {
193 bytesBuffer := bytes.NewBuffer(bys)
194 var data int64
195 binary.Read(bytesBuffer, binary.BigEndian, &data)
196 return data
197}
198
199func bytesToHexString(input []byte) string {
200 hexString := "0x"

Callers 1

Test_bytesToInt64Function · 0.85

Calls 1

ReadMethod · 0.45

Tested by 1

Test_bytesToInt64Function · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…