(s *string)
| 63 | } |
| 64 | |
| 65 | func (wb *writeBuffer) writeNullableString(s *string) { |
| 66 | if s == nil { |
| 67 | wb.writeInt16(-1) |
| 68 | } else { |
| 69 | wb.writeString(*s) |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | func (wb *writeBuffer) writeBytes(b []byte) { |
| 74 | n := len(b) |
no test coverage detected