UnmarshalBinary decodes the binary representation of itself from b
(b []byte)
| 72 | |
| 73 | // UnmarshalBinary decodes the binary representation of itself from b |
| 74 | func (s *StringSet) UnmarshalBinary(b []byte) error { |
| 75 | _, err := s.UnmarshalMsg(b) |
| 76 | return err |
| 77 | } |
| 78 | |
| 79 | // EncodeMsg encodes the message to the writer. |
| 80 | // Values are stored as a slice of ints or nil. |