зеркало из https://github.com/github/ruby.git
* hash.c (rb_hash_values): set array capa to RHASH_SIZE().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41926 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
9ae1b8f96b
Коммит
76a400ff71
|
@ -1,3 +1,7 @@
|
|||
Fri Jul 12 00:08:24 2013 Masaki Matsushita <glass.saga@gmail.com>
|
||||
|
||||
* hash.c (rb_hash_values): set array capa to RHASH_SIZE().
|
||||
|
||||
Thu Jul 11 23:54:45 2013 Masaki Matsushita <glass.saga@gmail.com>
|
||||
|
||||
* hash.c (rb_hash_keys): set array capa to RHASH_SIZE().
|
||||
|
|
2
hash.c
2
hash.c
|
@ -1681,7 +1681,7 @@ rb_hash_values(VALUE hash)
|
|||
{
|
||||
VALUE ary;
|
||||
|
||||
ary = rb_ary_new();
|
||||
ary = rb_ary_new_capa(RHASH_SIZE(hash));
|
||||
rb_hash_foreach(hash, values_i, ary);
|
||||
|
||||
return ary;
|
||||
|
|
Загрузка…
Ссылка в новой задаче