ClearBits cleared the bits that exist in the target if they are also in the found set.
(foundSet, target *Bitmap)
| 1012 | |
| 1013 | // ClearBits cleared the bits that exist in the target if they are also in the found set. |
| 1014 | func ClearBits(foundSet, target *Bitmap) { |
| 1015 | target.AndNot(foundSet) |
| 1016 | } |
| 1017 | |
| 1018 | // ClearValues removes from the BSI all values whose column IDs are in |
| 1019 | // foundSet, modifying the BSI in place. |
nothing calls this directly
no test coverage detected
searching dependent graphs…