Dense returns the values in the set. The values are listed in the order in which they were inserted.
()
| 56 | // The values are listed in the order in which they |
| 57 | // were inserted. |
| 58 | func (s *Set) Dense() []uint32 { |
| 59 | return s.dense |
| 60 | } |
| 61 | |
| 62 | // Len returns the number of values in the set. |
| 63 | func (s *Set) Len() int { |
no outgoing calls