Uint64 appends i as a uint64 to the array.
(i uint64)
| 206 | |
| 207 | // Uint64 appends i as a uint64 to the array. |
| 208 | func (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. |
| 214 | func (a *Array) Float32(f float32) *Array { |
nothing calls this directly
no test coverage detected