| 177 | } |
| 178 | |
| 179 | type arraySetBuilder struct { |
| 180 | typ super.Type |
| 181 | values Builder |
| 182 | offsets []uint32 |
| 183 | } |
| 184 | |
| 185 | func newArraySetBuilder(typ super.Type) Builder { |
| 186 | return &arraySetBuilder{typ: typ, values: NewBuilder(super.InnerType(typ)), offsets: []uint32{0}} |
nothing calls this directly
no outgoing calls
no test coverage detected