Method: Roaring::Bitmap64#remove
- Defined in:
- ext/roaring/bitmap64.c
#remove(val) ⇒ Object Also known as: delete
101 102 103 104 105 106 107 108 |
# File 'ext/roaring/bitmap64.c', line 101
static VALUE rb_roaring64_remove(VALUE self, VALUE val)
{
roaring64_bitmap_t *data = get_bitmap(self);
uint64_t num = NUM2UINT64(val);
roaring64_bitmap_remove(data, num);
return self;
}
|