Method: Roaring::Bitmap64#and!
- Defined in:
- ext/roaring/bitmap64.c
#and!(other) ⇒ Object
277 278 279 280 |
# File 'ext/roaring/bitmap64.c', line 277
static VALUE rb_roaring64_and_inplace(VALUE self, VALUE other)
{
return rb_roaring64_binary_op_inplace(self, other, roaring64_bitmap_and_inplace);
}
|