MCPcopy Create free account
hub / github.com/dgrr/http2 / BytesToUint32

Function BytesToUint32

http2utils/utils.go:44–51  ·  view source on GitHub ↗
(b []byte)

Source from the content-addressed store, hash-verified

42}
43
44func BytesToUint32(b []byte) uint32 {
45 _ = b[3] // bound checking
46 n := uint32(b[0])<<24 |
47 uint32(b[1])<<16 |
48 uint32(b[2])<<8 |
49 uint32(b[3])
50 return n
51}
52
53func EqualsFold(a, b []byte) bool {
54 n := len(a)

Callers 7

DeserializeMethod · 0.92
DeserializeMethod · 0.92
DeserializeMethod · 0.92
DeserializeMethod · 0.92
DeserializeMethod · 0.92
DeserializeMethod · 0.92
parseValuesMethod · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected