ref: dc44e7daef20e01088ba4ed8e287dcf8a7df8c07
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