EncodeMsg encodes the message to the writer. Values are stored as a slice of strings or nil.
(writer *msgp.Writer)
| 25 | // EncodeMsg encodes the message to the writer. |
| 26 | // Values are stored as a slice of strings or nil. |
| 27 | func (s StringSet) EncodeMsg(writer *msgp.Writer) error { |
| 28 | return setof.StringSorted(s).EncodeMsg(writer) |
| 29 | } |
| 30 | |
| 31 | // MarshalMsg encodes the message to the bytes. |
| 32 | // Values are stored as a slice of strings or nil. |