Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/IceFireDB/IceFireDB
/ ParseBinaryInt32
Function
ParseBinaryInt32
IceFireDB-SQLite/pkg/mysql/mysql/parse_binary.go:36–38 ·
view source on GitHub ↗
(data []byte)
Source
from the content-addressed store, hash-verified
34
}
35
36
func
ParseBinaryInt32(data []byte) int32 {
37
return
int32(binary.LittleEndian.Uint32(data))
38
}
39
40
func
ParseBinaryUint32(data []byte) uint32 {
41
return
binary.LittleEndian.Uint32(data)
Callers
2
TestMysqlParseBinaryInt32
Method · 0.70
ParseBinary
Method · 0.70
Calls
no outgoing calls
Tested by
1
TestMysqlParseBinaryInt32
Method · 0.56