(c *smatContext)
| 360 | } |
| 361 | |
| 362 | func smatRemoveBit(c *smatContext) { |
| 363 | c.withPair(c.x, func(p *smatPair) { |
| 364 | p.Validate() |
| 365 | y := uint32(c.y) |
| 366 | p.bm.Remove(y) |
| 367 | p.bs.Clear(uint(y)) |
| 368 | p.checkEquals() |
| 369 | }) |
| 370 | } |
| 371 | |
| 372 | func smatAnd(c *smatContext) { |
| 373 | c.withPair(c.x, func(px *smatPair) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…