/*
 *  call-seq:
 *     bv.unset(i) -> self
 *  
 *  Set the bit at _i_ to *off* (+false+)
 */
VALUE
frt_bv_set_off(VALUE self, VALUE rindex)
{
    frt_bv_set(self, rindex, Qfalse);
    return self;
}