-
Notifications
You must be signed in to change notification settings - Fork 330
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
Conversation
refm/api/src/_builtin/Array
Outdated
@@ -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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
intersection
と &
は厳密には違うメソッドなのですが、違うメソッドでもひとまとまりになっていることは多いし、ひとまとまりに書いてみました。
ただ、intersection
と&
で引数名が違う(&
は引数を1つしか取らないので)のはちょっと微妙かなあという気もしています。どうでしょうか?
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ここはsamplecode化しただけです
refm/api/src/set.rd
Outdated
#@end | ||
|
||
#@since 2.7.0 | ||
@see [[m:Array#intersection]] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ここには [[m:Array#&]]
は付けないのでしょうか?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Array#&
へのリンクを追加しました 👌 d8afdc0
#2071
Ruby 2.7 から追加された Array#intersection 及び Arrary#& のドキュメントを追加します。
また、Set#intersectionから see also のリンクを貼っています。
サンプルコードはRDocのものを使っています。スタイルだけ少し手直ししました。
RDoc: