Closed RyanGlScott closed 9 years ago
Currently, you can't do something like force (Proxy :: Proxy Maybe), since the NFData (Proxy a) instance assumes a :: *. Turning on PolyKinds on recent-enough GHCs allows the use of any kind.
force (Proxy :: Proxy Maybe)
NFData (Proxy a)
a :: *
PolyKinds
:+1:
now we just need some Haddock "since"-comment as well as some changelog entry
Currently, you can't do something like
force (Proxy :: Proxy Maybe)
, since theNFData (Proxy a)
instance assumesa :: *
. Turning onPolyKinds
on recent-enough GHCs allows the use of any kind.