我正在尝试开始使用 HList。有没有办法(函数?)以下列方式从字符串生成标签:
{-# LANGUAGE DataKinds #-}
import Data.HList
lb1 = Label :: Label "myLabel1"
lb2 = Label :: Label "myLabel2"
lb3 = Label :: Label "myLabel3"
myRec = lb1 .=. 'a' .*.
lb2 .=. (True, 42 :: Int) .*.
lb3 .=. 3.14 .*.
emptyRecord
main = do putStrLn "what's the label?"
lb <- getLine -- does not work
putStrLn $ "the value for this label is: " ++ show (myRec .!. lb)
return ()
由于 lb 是字符串,而不是标签,因此无法编译此代码。有没有合适的方法来实现这一目标?谢谢。