9

以下代码无法编译:

{-# LANGUAGE TemplateHaskell #-}

import Control.Lens

data MyType = MyType Int
data Outer = Outer { _inners :: [ Inner ] }
data Inner = Inner { _val :: MyType }

$(makeLenses ''Outer)
$(makeLenses ''Inner)

i1 = Inner (MyType 1)
i2 = Inner (MyType 2)

o = Outer [i1, i2]

x = o ^. inners . ix 0 . val

给出这个错误

Toy.hs:17:23:
No instance for (Data.Monoid.Monoid MyType)
  arising from a use of `ix'
Possible fix:
  add an instance declaration for (Data.Monoid.Monoid MyType)
In the first argument of `(.)', namely `ix 0'
In the second argument of `(.)', namely `ix 0 . val'
In the second argument of `(^.)', namely `inners . ix 0 . val'

假设 MyType 成为一个幺半群没有意义,我怎样才能获得允许我访问这个嵌套字段的 Lens(或 Traversal,或任何最合适的 - 我不确定区别)?最好具有阅读和更新的能力。

4

1 回答 1

11

因为ix n可能会失败(例如:) ,所以n >= length list您需要一种干净的方式来失败。选择的干净失败是mempty来自的元素Monoid。所以立即出现的问题是,如果您的类型不能是 Monoid,那么您希望这段代码如何失败?

我建议您使用^?而不是^.,从而重用Monoid命名Maybe

*Main> o ^? inners . ix 2 . val
Nothing
*Main> o ^? inners . ix 0 . val
Just (MyType 1)
于 2013-07-08T02:42:11.770 回答