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)
| 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. |
| 230 | func (writer *Writer) ByteSlice(vals []byte) { |
| 231 | writer.Uint8Slice(vals) |
| 232 | } |
| 233 | |
| 234 | // Float32Slice writes a float32 slice. |
| 235 | func (writer *Writer) Float32Slice(vals []float32) { |
no test coverage detected