我一直在愚弄Control.Lens.Indexed中的组合器,尤其是iconcatMap
,但是我无法使用{{ 3}}镜头:
func
-- list of key/value pairs, essentially
:: Aeson.Object
-- function for the concatMap operation to which the
-- key (Text) and value is passed
-> (Text -> Aeson.Value -> [a])
-- resultant concatenated list
-> [a]
答案 0 :(得分:3)
所需功能为iconcatMapOf
。另外,请注意,members
用AsValue
实例遍历类型,Object
没有这样的实例,因此我们需要将其包装到Value
中。
import qualified Data.Aeson as Aeson
import Control.Lens
import Data.Aeson.Lens
import Data.Text
func :: Aeson.Object -> (Text -> Aeson.Value -> [a]) -> [a]
func obj f = iconcatMapOf members f (Aeson.Object obj)