How to check if map has a key using lens syntax?
haskell, haskell-lens
Solution
Use `has`.
M.fromList [("bla", ())] & has (ix "bla")
Problem
How to check if map has a key using lens syntax? ``` import qualified Map as Map let x = Map.member "bla" m ``` How to write this using lenses?