(b *scode.Builder, slot uint32)
| 30 | } |
| 31 | |
| 32 | func (s *Set) Serialize(b *scode.Builder, slot uint32) { |
| 33 | off := s.Offsets[slot] |
| 34 | b.BeginContainer() |
| 35 | for end := s.Offsets[slot+1]; off < end; off++ { |
| 36 | s.Values.Serialize(b, off) |
| 37 | } |
| 38 | b.TransformContainer(super.NormalizeSet) |
| 39 | b.EndContainer() |
| 40 | } |
nothing calls this directly
no test coverage detected