Method: Roaring::Bitmap64#andnot
- Defined in:
- ext/roaring/bitmap64.c
#andnot(other) ⇒ Object Also known as: -, difference
312 313 314 315 |
# File 'ext/roaring/bitmap64.c', line 312
static VALUE rb_roaring64_andnot(VALUE self, VALUE other)
{
return rb_roaring64_binary_op(self, other, roaring64_bitmap_andnot);
}
|