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