(in string)
| 107 | } |
| 108 | |
| 109 | func (re *realEncoder) putString(in string) error { |
| 110 | re.putInt16(int16(len(in))) |
| 111 | copy(re.raw[re.off:], in) |
| 112 | re.off += len(in) |
| 113 | return nil |
| 114 | } |
| 115 | |
| 116 | func (re *realEncoder) putNullableString(in *string) error { |
| 117 | if in == nil { |
no test coverage detected