Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/IceFireDB/IceFireDB
/ ParseBinaryUint8
Function
ParseBinaryUint8
IceFireDB-SQLProxy/pkg/mysql/mysql/parse_binary.go:12–14 ·
view source on GitHub ↗
(data []byte)
Source
from the content-addressed store, hash-verified
10
}
11
12
func
ParseBinaryUint8(data []byte) uint8 {
13
return
data[0]
14
}
15
16
func
ParseBinaryInt16(data []byte) int16 {
17
return
int16(binary.LittleEndian.Uint16(data))
Callers
2
TestMysqlParseBinaryUint8
Method · 0.70
ParseBinary
Method · 0.70
Calls
no outgoing calls
Tested by
1
TestMysqlParseBinaryUint8
Method · 0.56