不幸的是,我无法找到问题的任何信息。
data Person =
Person { firstName :: !Text
, lastName :: !Text
, age :: Int
, likesPizza :: Bool
} deriving Show
代码段是文章Parsing JSON with Aeson中的令牌。
除标题中的问题外,是否应该使用!
的规则?
在上面的示例中,!
仅用于firstName
和lastName
。