エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
GitHub - raganwald/andand: The Maybe Monad in idiomatic Ruby
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
GitHub - raganwald/andand: The Maybe Monad in idiomatic Ruby
Object#andand What Object#andand lets us write: @phone = Location.find(:first, ...elided... ).and... Object#andand What Object#andand lets us write: @phone = Location.find(:first, ...elided... ).andand.phone And get a guarded method invocation or safe navigation method. This snippet performs a .find on the Location class, then sends .phone to the result if the result is not nil. If the result is nil, then the expression returns nil without throwing a NoMethodError. As Dejan Simic put it: Why woul