/*
 *  call-seq:
 *     bv1.and!(bv2) -> self
 *  
 *  Perform a boolean _and_ operation on +bv1+ and
 *  +bv2+ in place on +bv1+
 */
VALUE
frb_bv_and_x(VALUE self, VALUE other)
{
    BitVector *bv1, *bv2;
    GET_BV(bv1, self);
    GET_BV(bv2, other);
    bv_and_x(bv1, bv2);
    return self;
}