clash-prelude-0.3: src/CLaSH/Promoted/Nat/TH.hs
{-# LANGUAGE TemplateHaskell #-}
module CLaSH.Promoted.Nat.TH where
import Language.Haskell.TH
import CLaSH.Promoted.Nat
-- | Create an 'SNat' constant
--
-- > $(decLiteralD "d" 1200) == d1200 = snat :: SNat 1200
decLiteralD :: String
-> Integer
-> Q [Dec]
decLiteralD valPrefix n =
do let suffix = if n < 0 then error ("Can't make negative SNat: " ++ show n) else show n
valName = mkName $ valPrefix ++ suffix
sig <- sigD valName (appT (conT ''SNat) (litT (numTyLit n)))
val <- valD (varP valName) (normalB [| snat |]) []
return [ sig, val ]
-- | Create an 'SNat' constants
--
-- > $(decLiteralsD "d" 1200 1202) == d1200 = snat :: SNat 1200
-- > d1201 = snat :: SNat 1201
-- > d1202 = snat :: SNat 1202
decLiteralsD :: String
-> Integer
-> Integer
-> Q [Dec]
decLiteralsD valPrefix from to =
fmap concat $ sequence $ [ decLiteralD valPrefix n | n <- [from..to] ]