A lot of lens getters return Maybe values. And i often need to replace them with some default.
Say map lookup but with default.
fromMaybe "" $ Map.fromList [(1,"Foo")] ^? at 1
Can this be written with lens syntax? Maybe something close to this:
Map.fromList [(1,"Foo")] ^? at 1.or ""