Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Array#intersection since Ruby 2.7 #2254

Merged
merged 3 commits into from
Jun 2, 2020
Merged

Add Array#intersection since Ruby 2.7 #2254

merged 3 commits into from
Jun 2, 2020

Conversation

pocke
Copy link
Member

@pocke pocke commented May 21, 2020

#2071

Ruby 2.7 から追加された Array#intersection 及び Arrary#& のドキュメントを追加します。
また、Set#intersectionから see also のリンクを貼っています。

サンプルコードはRDocのものを使っています。スタイルだけ少し手直ししました。

RDoc:

@@ -1138,6 +1138,34 @@ self 以下のネストしたオブジェクトを dig メソッドで再帰的
ary.insert(-2, "X")
p ary # => [1, 2, "a", "b", "X", 3]

#@since 2.7.0
--- intersection(*other_arrays) -> Array
--- &(other_array) -> Array
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

intersection& は厳密には違うメソッドなのですが、違うメソッドでもひとまとまりになっていることは多いし、ひとまとまりに書いてみました。
ただ、intersection&で引数名が違う(&は引数を1つしか取らないので)のはちょっと微妙かなあという気もしています。どうでしょうか?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

よくみたらArray#&はRuby 2.7以前でも存在していてドキュメントもすでにあるので、 8b20336 でintersectionと&を足していたのは & の定義が2重になってしまっていました。
そのため、 intersection と & を別のメソッドとして書いて、それぞれsee alsoのリンクをはるようにしました。

s1 = Set[10, 20, 30]
s2 = Set[10, 30, 50]
p s1 & s2 #=> #<Set: {10, 30}>
#@end
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ここはsamplecode化しただけです

#@end

#@since 2.7.0
@see [[m:Array#intersection]]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ここには [[m:Array#&]] は付けないのでしょうか?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Array#&へのリンクを追加しました 👌 d8afdc0

@znz znz merged commit e2bbc2e into rurema:master Jun 2, 2020
@pocke pocke deleted the Array#& branch June 4, 2020 06:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants