We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c41c131 commit db7f212Copy full SHA for db7f212
preprocessed-site/posts/2019/hiw-ghc-future.md
@@ -95,11 +95,14 @@ Valid Hole Fitsの検索方法をその場で微調整したい、というと
95
例えば
96
97
```haskell
98
+> :set -XKindSignatures
99
+> :set -XPolyKinds
100
+> data SomeType k (a :: k)
101
> :kind SomeType
102
SomeType :: forall k -> k -> *
103
```
104
-`SomeType :: forall k -> k -> *`の`forall k ->`という部分です。
105
+における、`SomeType :: forall k -> k -> *`の`forall k ->`という部分です。
106
現在のHaskellで`forall k`などと書くときは、必ず
107
108
0 commit comments