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

Function decodeFloat64

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

decodeLE64Function · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…