зеркало из https://github.com/github/ruby.git
add static modifer for rb_hash_fetch_values func
This commit is contained in:
Родитель
2480ef904c
Коммит
ff58cbce94
2
hash.c
2
hash.c
|
@ -2763,7 +2763,7 @@ rb_hash_values_at(int argc, VALUE *argv, VALUE hash)
|
||||||
* h.fetch_values("cow", "bird") { |k| k.upcase } #=> ["bovine", "BIRD"]
|
* h.fetch_values("cow", "bird") { |k| k.upcase } #=> ["bovine", "BIRD"]
|
||||||
*/
|
*/
|
||||||
|
|
||||||
VALUE
|
static VALUE
|
||||||
rb_hash_fetch_values(int argc, VALUE *argv, VALUE hash)
|
rb_hash_fetch_values(int argc, VALUE *argv, VALUE hash)
|
||||||
{
|
{
|
||||||
VALUE result = rb_ary_new2(argc);
|
VALUE result = rb_ary_new2(argc);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче