MCPcopy
hub / github.com/rs/zerolog / Uint64

Method Uint64

array.go:208–211  ·  view source on GitHub ↗

Uint64 appends i as a uint64 to the array.

(i uint64)

Source from the content-addressed store, hash-verified

206
207// Uint64 appends i as a uint64 to the array.
208func (a *Array) Uint64(i uint64) *Array {
209 a.buf = enc.AppendUint64(enc.AppendArrayDelim(a.buf), i)
210 return a
211}
212
213// Float32 appends f as a float32 to the array.
214func (a *Array) Float32(f float32) *Array {

Callers

nothing calls this directly

Calls 2

AppendUint64Method · 0.65
AppendArrayDelimMethod · 0.65

Tested by

no test coverage detected