UnmarshalBinary decodes the binary representation of itself from b
(b []byte)
| 126 | |
| 127 | // UnmarshalBinary decodes the binary representation of itself from b |
| 128 | func (s *IntSet) UnmarshalBinary(b []byte) error { |
| 129 | _, err := s.UnmarshalMsg(b) |
| 130 | return err |
| 131 | } |