You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
func Not(a bitmap.Bitmap) bitmap.Bitmap {
var res bitmap.Bitmap
a.Clone(&res)
res.Ones()
//rfunc clears bits in res if they are set in a
rFunc := func(k uint32) {
res.Remove(k)
}
a.Range(rFunc)
return res
}
is it possible to support
not
operation? https://en.wikipedia.org/wiki/Bitwise_operation#NOTThe text was updated successfully, but these errors were encountered: