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

Function bytesToInt32

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

Source from the content-addressed store, hash-verified

183}
184
185func bytesToInt32(bys []byte) int32 {
186 bytesBuffer := bytes.NewBuffer(bys)
187 var data int32
188 binary.Read(bytesBuffer, binary.BigEndian, &data)
189 return data
190}
191
192func bytesToInt64(bys []byte) int64 {
193 bytesBuffer := bytes.NewBuffer(bys)

Callers 2

Test_bytesToInt32Function · 0.85
bytesToDateFunction · 0.85

Calls 1

ReadMethod · 0.45

Tested by 1

Test_bytesToInt32Function · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…