Method: Roaring::Bitmap64#xor
- Defined in:
- ext/roaring/bitmap64.c
#xor(other) ⇒ Object Also known as: ^
307 308 309 310 |
# File 'ext/roaring/bitmap64.c', line 307
static VALUE rb_roaring64_xor(VALUE self, VALUE other)
{
return rb_roaring64_binary_op(self, other, roaring64_bitmap_xor);
}
|