Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/IceFireDB/IceFireDB
/ ParseBinaryUint16
Function
ParseBinaryUint16
IceFireDB-SQLProxy/pkg/mysql/mysql/parse_binary.go:20–22 ·
view source on GitHub ↗
(data []byte)
Source
from the content-addressed store, hash-verified
18
}
19
20
func
ParseBinaryUint16(data []byte) uint16 {
21
return
binary.LittleEndian.Uint16(data)
22
}
23
24
func
ParseBinaryInt24(data []byte) int32 {
25
u32 := ParseBinaryUint24(data)
Callers
2
TestMysqlParseBinaryUint16
Method · 0.70
ParseBinary
Method · 0.70
Calls
no outgoing calls
Tested by
1
TestMysqlParseBinaryUint16
Method · 0.56