/*
 * call-seq:
 *   row.each_value { |value| block } -> row
 *
 * Iterate with values.
 */
static VALUE
pgrow_each_value(self)
    VALUE self;
{
    rb_ary_each(self);
    return self;
}