update(p1)
public
Insert or update key-value pairs.
This method will work with any object which implements an each_pair method, such as a Hash.
static VALUE
fsdbm_update(VALUE obj, VALUE other)
{
rb_block_call(other, rb_intern("each_pair"), 0, 0, update_i, obj);
return obj;
}