(buf *ByteBuffer, value []bool)
| 436 | } |
| 437 | |
| 438 | func writeBoolListValues(buf *ByteBuffer, value []bool) { |
| 439 | if len(value) > 0 { |
| 440 | buf.WriteBinary(unsafe.Slice((*byte)(unsafe.Pointer(&value[0])), len(value))) |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | func primitiveListByteSize(length int, elemSize int, err *Error) (int, bool) { |
| 445 | if length < 0 { |
no test coverage detected