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