Is there a way to combine lenses, such that I can apply a function over a and b in the below structure, but not c?
import Control.Lens hiding (element)
data SomeInts = SomeInts {_a :: Int , _b :: Int, _c :: Int } deriving (Show)
makeLenses ''SomeInts