EncodeMsg encodes the message to the writer. Values are stored as a slice of ints or nil.
(writer *msgp.Writer)
| 79 | // EncodeMsg encodes the message to the writer. |
| 80 | // Values are stored as a slice of ints or nil. |
| 81 | func (s IntSet) EncodeMsg(writer *msgp.Writer) error { |
| 82 | return setof.IntSorted(s).EncodeMsg(writer) |
| 83 | } |
| 84 | |
| 85 | // MarshalMsg encodes the message to the bytes. |
| 86 | // Values are stored as a slice of ints or nil. |
no outgoing calls