Method: Hash#map_values!
- Defined in:
- ext/rmtools.cpp
#map_values! ⇒ Object
Hashes map methods that doesn’t make hash into array
364 365 366 367 368 |
# File 'ext/rmtools.cpp', line 364 static VALUE rb_hash_map_values_bang(VALUE hash) { rb_hash_foreach(hash, (int (*)(ANYARGS))map_values_i, hash); return hash; } |