Method: Roaring::Bitmap64#or!
- Defined in:
- ext/roaring/bitmap64.c
#or!(other) ⇒ Object
282 283 284 285 |
# File 'ext/roaring/bitmap64.c', line 282
static VALUE rb_roaring64_or_inplace(VALUE self, VALUE other)
{
return rb_roaring64_binary_op_inplace(self, other, roaring64_bitmap_or_inplace);
}
|