Skip to content

Instantly share code, notes, and snippets.

@purefn
Created March 4, 2015 23:02
Show Gist options
  • Save purefn/7a489be316dcb1291839 to your computer and use it in GitHub Desktop.
Save purefn/7a489be316dcb1291839 to your computer and use it in GitHub Desktop.
data Foo = Foo { bar :: Maybe Bar }
data Bar = Bar { baz :: Text }
t :: Foo -> Text
t foo = foldMap id $ foo ^. bar ^? _Just baz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment