ref: 924f18d2d6cc10dbfa191a710e274bb6660ea50a
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