エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Typed Elixir structs without boilerplate
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Typed Elixir structs without boilerplate
This blog has moved. Please now refer to this article by using this link. TD;DR A package is avai... This blog has moved. Please now refer to this article by using this link. TD;DR A package is available on hex.pm and GitHub. In Elixir, you can define a struct by calling defstruct in a module. This macro takes a list of atoms which becomes the keys of the struct, or a keyword list associating these keys to default values: defstruct name: "John Smith", age: nil, phone: nilAll the keys are optional