エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Ruby 2.5 added yield_self | BigBinary Blog
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Ruby 2.5 added yield_self | BigBinary Blog
Ruby 2.5 added a new method named yield_self. It yields the receiver to the given block and retur... Ruby 2.5 added a new method named yield_self. It yields the receiver to the given block and returns output of the last statement in the block. 1irb> "Hello".yield_self { |str| str + " World" } 2 => "Hello World"Copy How is it different from try in Rails ? Without a method argument try behaves similar to yield_self. It would yield to the given block unless the receiver is nil and returns the output