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