I've bumped into an issue using zippers and lens. Consider following example:
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE TypeOperators #-}
import Control.Lens
import Control.Zipper
data A = AA { _aa :: A }
| AB { _ab :: B }
deriving (Show)
data B = B deriving (Show)
makeLenses ''A
makeLenses ''B
main :: IO ()
main = do
let a = AA $ AB $ B
z :: Top :>> A
z = zipper a
zAA :: Maybe (Top :>> A :>> A)
zAA = z & within aa
zAB :: Maybe (Top :>> A :>> B)
zAB = z & within (aa . ab)
return ()
As you can see, I can move from Top :>> A
either to Top :>> A :>> A
and Top :>> A :>> B
.
Having ab
lens, how can I move from Top :>> A :>> A
(zAA
) to Top :>> A :>> B
(zAB
), without using upward
- just mapping with lens over last breadcrumb?