Created
October 21, 2017 09:50
-
-
Save ekmett/ac881f3dba3f89ec03f8fdb1d8bf0a40 to your computer and use it in GitHub Desktop.
Closed kinds aren't as closed as you'd think
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# language PolyKinds, DataKinds, RankNTypes, TypeApplications, ScopedTypeVariables, TypeFamilies, FlexibleInstances #-} | |
import Data.Proxy | |
class KnownUnit (k :: ()) where | |
reflect :: Proxy k -> Int | |
instance KnownUnit '() where | |
reflect _ = 0 | |
instance KnownUnit x => KnownUnit (f x) where | |
reflect _ = 1 + reflect (Proxy :: Proxy x) | |
type family Succ :: k -> k | |
reify :: Int -> (forall k. KnownUnit k => Proxy k -> r) -> r | |
reify 0 f = f (Proxy :: Proxy '()) | |
reify n f = reify (n - 1) $ \(Proxy :: Proxy k) -> f (Proxy :: Proxy (Succ k)) | |
-- ghci> reify 23 reflect | |
-- 23 |
I did. I was going to write it TypeApplications style, then forgot. =)
I mentioned it in the tweet that originally linked here, but the technique that I used here is originally due to aarvar.
Here's a reexposition of Edwad's example using type applications.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I see
TypeApplications
is enabled, but it looks like you don’t use the extension at all, and instead useProxy
. Did you start by using@
and then determine it didn’t work, or isProxy
less obscure, or am I just confused, or what?