Method: Hash#map_values

Defined in:
ext/rmtools.cpp

#map_valuesObject

Hashes map methods that doesn’t make hash into array



382
383
384
385
386
387
# File 'ext/rmtools.cpp', line 382

static VALUE rb_hash_map_values(VALUE hash)
{
  VALUE new_hash = rb_hash_new();
  rb_hash_foreach(hash, (int (*)(ANYARGS))map_values_i, new_hash);
  return new_hash;
}