(bytes scode.Bytes)
| 352 | } |
| 353 | |
| 354 | func (b *boolBuilder) Write(bytes scode.Bytes) { |
| 355 | if super.DecodeBool(bytes) { |
| 356 | b.values.Add(b.n) |
| 357 | } |
| 358 | b.n++ |
| 359 | } |
| 360 | |
| 361 | func (b *boolBuilder) Build(sctx *super.Context) Any { |
| 362 | bits := make([]uint64, (b.n+63)/64) |
nothing calls this directly
no test coverage detected