MarshalBinary encodes the receiver into a binary form and returns the result.
()
| 62 | |
| 63 | // MarshalBinary encodes the receiver into a binary form and returns the result. |
| 64 | func (s StringSet) MarshalBinary() ([]byte, error) { |
| 65 | return s.MarshalMsg(nil) |
| 66 | } |
| 67 | |
| 68 | // AppendBinary appends the binary representation of itself to the end of b |
| 69 | func (s StringSet) AppendBinary(b []byte) ([]byte, error) { |
nothing calls this directly
no test coverage detected