Method: Roaring::Bitmap64#and
- Defined in:
- ext/roaring/bitmap64.c
#and(other) ⇒ Object Also known as: &, intersection
297 298 299 300 |
# File 'ext/roaring/bitmap64.c', line 297
static VALUE rb_roaring64_and(VALUE self, VALUE other)
{
return rb_roaring64_binary_op(self, other, roaring64_bitmap_and);
}
|