ref: b278636d2f18b02c3bf5dac0a1093d71e1ac72ae
dir: /lib/Data/TypeLits.hs/
module Data.TypeLits( Symbol, Nat, KnownNat(..), KnownSymbol(..), ) where import Primitives import Prelude class KnownNat (n :: Nat) where natVal :: forall (proxy :: Nat -> Type) . proxy n -> Integer class KnownSymbol (s :: Symbol) where symbolVal :: forall (proxy :: Symbol -> Type) . proxy s -> String