MCPcopy Create free account
hub / github.com/brimdata/super / Serialize

Method Serialize

vector/set.go:32–40  ·  view source on GitHub ↗
(b *scode.Builder, slot uint32)

Source from the content-addressed store, hash-verified

30}
31
32func (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}

Callers

nothing calls this directly

Calls 4

BeginContainerMethod · 0.80
TransformContainerMethod · 0.80
EndContainerMethod · 0.80
SerializeMethod · 0.65

Tested by

no test coverage detected