Skip to content

Commit

Permalink
Functor への言及をリンクにする
Browse files Browse the repository at this point in the history
  • Loading branch information
Seasawher committed Nov 5, 2024
1 parent 709646a commit 742c3cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LeanByExample/Reference/Diagnostic/Whnf.lean
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ instance instMonadMany : Monad Many where
pure := Many.one
bind := Many.bind

/- `Monad` 型クラスは `Functor` クラスや `Applicative` クラスの実装を含むので、`Many` は `Functor` や `Applicative` のインスタンスでもあります。このインスタンスは次のように `inferInstance` という関数で構成することができますが、その中身を `#print` で出力してみても実装がわかりません。-/
/- `Monad` 型クラスは [`Functor`](#{root}/Reference/TypeClass/Functor.md) クラスや `Applicative` クラスの実装を含むので、`Many` は `Functor` や `Applicative` のインスタンスでもあります。このインスタンスは次のように `inferInstance` という関数で構成することができますが、その中身を `#print` で出力してみても実装がわかりません。-/

def instManyFunctor : Functor Many := inferInstance

Expand Down
2 changes: 1 addition & 1 deletion LeanByExample/Reference/Type/List.lean
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ end Hidden --#
### map
`List` は `Functor` 型クラスのインスタンスになっているため `<$>` 演算子が利用できます。
`List` は [`Functor`](#{root}/Reference/TypeClass/Functor.md) 型クラスのインスタンスになっているため `<$>` 演算子が利用できます。
-/

-- `<$>` 演算子が利用できる
Expand Down

0 comments on commit 742c3cf

Please sign in to comment.