(sctx *super.Context)
| 359 | } |
| 360 | |
| 361 | func (b *boolBuilder) Build(sctx *super.Context) Any { |
| 362 | bits := make([]uint64, (b.n+63)/64) |
| 363 | b.values.WriteDenseTo(bits) |
| 364 | return NewBool(bitvec.New(bits, b.n)) |
| 365 | } |
| 366 | |
| 367 | type bytesStringTypeBuilder struct { |
| 368 | typ super.Type |