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