MCPcopy Create free account
hub / github.com/segmentio/encoding / decodeFloat32

Function decodeFloat32

proto/float32.go:33–37  ·  view source on GitHub ↗
(b []byte, p unsafe.Pointer, _ flags)

Source from the content-addressed store, hash-verified

31}
32
33func decodeFloat32(b []byte, p unsafe.Pointer, _ flags) (int, error) {
34 v, n, err := decodeLE32(b)
35 *(*float32)(p) = math.Float32frombits(v)
36 return n, err
37}

Callers

nothing calls this directly

Calls 1

decodeLE32Function · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…