AppendBinary appends the binary representation of itself to the end of b
(b []byte)
| 67 | |
| 68 | // AppendBinary appends the binary representation of itself to the end of b |
| 69 | func (s StringSet) AppendBinary(b []byte) ([]byte, error) { |
| 70 | return s.MarshalMsg(b) |
| 71 | } |
| 72 | |
| 73 | // UnmarshalBinary decodes the binary representation of itself from b |
| 74 | func (s *StringSet) UnmarshalBinary(b []byte) error { |
nothing calls this directly
no test coverage detected