1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ruby &. の呼び方について

Last updated at Posted at 2020-05-07

これ何

&. ってなんて呼びんだっけ...って調べてたので、ついでにまとめる。

答え「ぼっち演算子」

英語では「safe navigation operator」というらしい。学び。
公式ドキュメントにも確かに載っていた。

参考:Ruby 2.7.0 リファレンスマニュアル Rubyで使われる記号の意味(正規表現の複雑な記号は除く) #and

ついでに

調査ついでに、リファレンスマニュアル を読んでいたら ^= ってmethodが気になった。

右辺がtrueの場合には、aの論理値の反転した値を返す。

b = true
3.times do 
  b ^= true
  puts b
end
# => false
# => true
# => false

左辺がfalseの場合には、反転せず、同じbooleanの値を返す。

b = true
3.times do 
  b ^= false
  puts b
end
# => true
# => true
# => true
b = false
3.times do 
  b ^= false
  puts b
end
# => false
# => false
# => false

stringやintegerなどでも試したところ、NoMethodErrorになった。

b = 'a'
b ^= true
# => NoMethodError (undefined method `^' for "a":String)

参考:Ruby 2.7.0 リファレンスマニュアル Rubyで使われる記号の意味(正規表現の複雑な記号は除く) #hat

まとめ

ついでを調べると意外な発見がある!

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?