Method: Roaring::Bitmap64#andnot!
- Defined in:
- ext/roaring/bitmap64.c
#andnot!(other) ⇒ Object
292 293 294 295 |
# File 'ext/roaring/bitmap64.c', line 292
static VALUE rb_roaring64_andnot_inplace(VALUE self, VALUE other)
{
return rb_roaring64_binary_op_inplace(self, other, roaring64_bitmap_andnot_inplace);
}
|