MCPcopy Create free account
hub / github.com/dolthub/doltgresql / WriteFloat64

Method WriteFloat64

utils/wirerw.go:195–198  ·  view source on GitHub ↗

WriteFloat64 writes a float64.

(val float64)

Source from the content-addressed store, hash-verified

193
194// WriteFloat64 writes a float64.
195func (rw *WireRW) WriteFloat64(val float64) *WireRW {
196 rw.WriteUint64(math.Float64bits(val))
197 return rw
198}
199
200// WriteString writes the raw string bytes.
201func (rw *WireRW) WriteString(val string) *WireRW {

Callers 1

float8.goFile · 0.80

Calls 1

WriteUint64Method · 0.95

Tested by

no test coverage detected