Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/Terry-Mao/goim
/ PutInt32
Method
PutInt32
pkg/encoding/binary/endian.go:25–30 ·
view source on GitHub ↗
(b []byte, v int32)
Source
from the content-addressed store, hash-verified
23
}
24
25
func
(bigEndian) PutInt32(b []byte, v int32) {
26
b[0] = byte(v >> 24)
27
b[1] = byte(v >> 16)
28
b[2] = byte(v >> 8)
29
b[3] = byte(v)
30
}
Callers
6
TestInt32
Function · 0.80
WriteTo
Method · 0.80
WriteTCP
Method · 0.80
WriteTCPHeart
Method · 0.80
WriteWebsocket
Method · 0.80
WriteWebsocketHeart
Method · 0.80
Calls
no outgoing calls
Tested by
1
TestInt32
Function · 0.64