エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Theorems for Free: The Monad Edition
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Theorems for Free: The Monad Edition
This is for the record, since the derivations took me a while and I'd rather not lose them. A fun... This is for the record, since the derivations took me a while and I'd rather not lose them. A functor is the signature: module type FUNCTOR = sig type 'a t val fmap : ('a -> 'b) -> ('a t -> 'b t) end satisfying the following laws: Identity: fmap id ≡ id Composition: fmap (f ∘ g) ≡ fmap f ∘ fmap g An applicative structure or idiom is the signature: module type APPLICATIVE = sig type 'a t val pure :