繁体   English   中英

Function 组合,带有类型默认值的类型注释

[英]Function composition with type annotation for type defaults

假设我有以下类型:

data ImageSize = ImageSize {height :: Int, width :: Int}

我现在想将其转换为 JSON 数组(出于旧版 API 表面原因):

instance ToJSON ImageSize where
  toJSON ImageSize{..} = Array $ fromList $ Number <$> map (fromFloatDigits . fromIntegral) [height, width]

这无法编译:

 error: [-Wtype-defaults, -Werror=type-defaults]
    • Defaulting the following constraints to type ‘Double’
        (RealFloat a0)
          arising from a use of ‘fromFloatDigits’
          at lib/Filler/Filler/Filler/Filler/Filler/ImageSize.hs:14:63-77
        (Num a0)
          arising from a use of ‘fromIntegral’
          at lib/Filler/Filler/Filler/Filler/Filler/ImageSize.hs:14:80-98
    • In the first argument of ‘map’, namely ‘fromFloatDigits’
      In the second argument of ‘(<$>)’, namely
        ‘map (fromFloatDigits . fromIntegral) [height, width]’
      In the second argument of ‘($)’, namely
        ‘Number
           <$> map (fromFloatDigits . fromIntegral) [height, width]’

这个问题(微不足道)通过以下方式解决:

toJSON ImageSize{..} = Array $ fromList $ Number <$> map (fromFloatDigits) [(fromIntegral height) :: Double, (fromIntegral width)]

但这感觉非常冗长和丑陋。 有没有办法将类型转换附加到组合中? 类似于(fromFloatDigits. :: Double. fromIntegral)的东西,但实际上是功能性的吗?

直接使用fromIntegral即可,无需额外添加中间类型。

toJSON ImageSize{..} = Array $ fromList $ Number <$> map fromIntegral [height, width]

但更简单的是使用toJSON ...

toJSON ImageSize{..} = toJSON [height, width]

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM