/* * call-seq: * bv.set(i) -> self * * Set the bit at _i_ to *on* (+true+) */ VALUE frb_bv_set_on(VALUE self, VALUE rindex) { frb_bv_set(self, rindex, Qtrue); return self; }