Hello!
I have a record like this:

data A = { _bs :: [B]}

funcA :: State A ()
funcA = bs ??? funcB

funcB :: State B ()
funcB = ...

What lens operator should I use instead of ???, to update all my Bs?

Cheers,
Corentin