エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
"Robust Clojure: The best way to handle nil"
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
"Robust Clojure: The best way to handle nil"
Large Clojure codebases can become nasty, just as in any other dynamic language. Fortunately, Clo... Large Clojure codebases can become nasty, just as in any other dynamic language. Fortunately, Clojure isn't as problematic as some other languages because it is partially inspired by ML. True, it doesn't have static typing, but the way Clojure treats nil allows us to get very close to the ML way. In Haskell and other ML-ish languages, the Maybe type represents either Nothing or Just <some_value>.