Method: Roaring::Bitmap64#xor!

Defined in:
ext/roaring/bitmap64.c

#xor!(other) ⇒ Object



287
288
289
290
# File 'ext/roaring/bitmap64.c', line 287

static VALUE rb_roaring64_xor_inplace(VALUE self, VALUE other)
{
    return rb_roaring64_binary_op_inplace(self, other, roaring64_bitmap_xor_inplace);
}