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

Method ByteSlice

utils/writer.go:230–232  ·  view source on GitHub ↗

ByteSlice writes a byte slice. This is equivalent to Uint8Slice, but is included since it is more common to refer to byte slices than uint8 slices.

(vals []byte)

Source from the content-addressed store, hash-verified

228// ByteSlice writes a byte slice. This is equivalent to Uint8Slice, but is included since it is more common to refer to
229// byte slices than uint8 slices.
230func (writer *Writer) ByteSlice(vals []byte) {
231 writer.Uint8Slice(vals)
232}
233
234// Float32Slice writes a float32 slice.
235func (writer *Writer) Float32Slice(vals []float32) {

Callers 4

SerializeMethod · 0.95
serializeTypeByteaFunction · 0.95
serializeTypeRecordFunction · 0.95
WriteMessagesMethod · 0.95

Calls 1

Uint8SliceMethod · 0.95

Tested by

no test coverage detected