(sub *UUIDSet)
| 199 | } |
| 200 | |
| 201 | func (s *UUIDSet) Contain(sub *UUIDSet) bool { |
| 202 | if !bytes.Equal(s.SID.Bytes(), sub.SID.Bytes()) { |
| 203 | return false |
| 204 | } |
| 205 | |
| 206 | return s.Intervals.Contain(sub.Intervals) |
| 207 | } |
| 208 | |
| 209 | func (s *UUIDSet) Bytes() []byte { |
| 210 | var buf bytes.Buffer |