ref: 2ac265704e87b49196c3fb6cd84d63f15f06ba05
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