update(p1)
public
Adds the key-value pairs of other to gdbm, overwriting
entries with duplicate keys with those from
other. other must have an each_pair method.
static VALUE
fgdbm_update(VALUE obj, VALUE other)
{
rb_block_call(other, rb_intern("each_pair"), 0, 0, update_i, obj);
return obj;
}