Replaces the contents of the database with the contents of the specified
object. Takes any object which implements the each_pair method, including Hash and DBM objects.
static VALUE
fdbm_replace(VALUE obj, VALUE other)
{
fdbm_clear(obj);
rb_block_call(other, rb_intern("each_pair"), 0, 0, update_i, obj);
return obj;
}