mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Introduce rb_ary_union_hash method in Array
Avoid repeating code and improve readability in `rb_ary_or` and `rb_ary_union_multi`. Similaty as done with `rb_ary_union`. [Fix GH-1747] [Feature #14097] From: Ana María Martínez Gómez <ammartinez@suse.de> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64790 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4c08223945
commit
ce079f1651
1 changed files with 15 additions and 19 deletions
34
array.c
34
array.c
|
@ -4282,6 +4282,18 @@ rb_ary_union(VALUE ary_union, VALUE ary)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
rb_ary_union_hash(VALUE hash, VALUE ary2)
|
||||||
|
{
|
||||||
|
long i;
|
||||||
|
for (i = 0; i < RARRAY_LEN(ary2); i++) {
|
||||||
|
VALUE elt = RARRAY_AREF(ary2, i);
|
||||||
|
if (!st_update(RHASH_TBL_RAW(hash), (st_data_t)elt, ary_hash_orset, (st_data_t)elt)) {
|
||||||
|
RB_OBJ_WRITTEN(hash, Qundef, elt);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* call-seq:
|
* call-seq:
|
||||||
* ary | other_ary -> new_ary
|
* ary | other_ary -> new_ary
|
||||||
|
@ -4301,7 +4313,6 @@ static VALUE
|
||||||
rb_ary_or(VALUE ary1, VALUE ary2)
|
rb_ary_or(VALUE ary1, VALUE ary2)
|
||||||
{
|
{
|
||||||
VALUE hash, ary3;
|
VALUE hash, ary3;
|
||||||
long i;
|
|
||||||
|
|
||||||
ary2 = to_ary(ary2);
|
ary2 = to_ary(ary2);
|
||||||
if (RARRAY_LEN(ary1) + RARRAY_LEN(ary2) <= SMALL_ARRAY_LEN) {
|
if (RARRAY_LEN(ary1) + RARRAY_LEN(ary2) <= SMALL_ARRAY_LEN) {
|
||||||
|
@ -4312,12 +4323,8 @@ rb_ary_or(VALUE ary1, VALUE ary2)
|
||||||
}
|
}
|
||||||
|
|
||||||
hash = ary_make_hash(ary1);
|
hash = ary_make_hash(ary1);
|
||||||
for (i=0; i<RARRAY_LEN(ary2); i++) {
|
rb_ary_union_hash(hash, ary2);
|
||||||
VALUE elt = RARRAY_AREF(ary2, i);
|
|
||||||
if (!st_update(RHASH_TBL_RAW(hash), (st_data_t)elt, ary_hash_orset, (st_data_t)elt)) {
|
|
||||||
RB_OBJ_WRITTEN(hash, Qundef, elt);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ary3 = rb_hash_values(hash);
|
ary3 = rb_hash_values(hash);
|
||||||
ary_recycle_hash(hash);
|
ary_recycle_hash(hash);
|
||||||
return ary3;
|
return ary3;
|
||||||
|
@ -4343,7 +4350,6 @@ static VALUE
|
||||||
rb_ary_union_multi(int argc, VALUE *argv, VALUE ary)
|
rb_ary_union_multi(int argc, VALUE *argv, VALUE ary)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
long j;
|
|
||||||
long sum;
|
long sum;
|
||||||
VALUE hash, ary_union;
|
VALUE hash, ary_union;
|
||||||
|
|
||||||
|
@ -4363,17 +4369,7 @@ rb_ary_union_multi(int argc, VALUE *argv, VALUE ary)
|
||||||
}
|
}
|
||||||
|
|
||||||
hash = ary_make_hash(ary);
|
hash = ary_make_hash(ary);
|
||||||
|
for (i = 0; i < argc; i++) rb_ary_union_hash(hash, argv[i]);
|
||||||
for (i = 0; i < argc; i++) {
|
|
||||||
VALUE argv_i = argv[i];
|
|
||||||
|
|
||||||
for (j = 0; j < RARRAY_LEN(argv_i); j++) {
|
|
||||||
VALUE elt = RARRAY_AREF(argv_i, j);
|
|
||||||
if (!st_update(RHASH_TBL_RAW(hash), (st_data_t)elt, ary_hash_orset, (st_data_t)elt)) {
|
|
||||||
RB_OBJ_WRITTEN(hash, Qundef, elt);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ary_union = rb_hash_values(hash);
|
ary_union = rb_hash_values(hash);
|
||||||
ary_recycle_hash(hash);
|
ary_recycle_hash(hash);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue