AppendBinary appends the binary representation of itself to the end of b
(b []byte)
| 121 | |
| 122 | // AppendBinary appends the binary representation of itself to the end of b |
| 123 | func (s IntSet) AppendBinary(b []byte) ([]byte, error) { |
| 124 | return s.MarshalMsg(b) |
| 125 | } |
| 126 | |
| 127 | // UnmarshalBinary decodes the binary representation of itself from b |
| 128 | func (s *IntSet) UnmarshalBinary(b []byte) error { |