Created
November 12, 2018 16:16
-
-
Save Akii/cb2c97c1af9be95f4c76b9b6aa0d024d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
newtype NT = NT String | |
foo :: Maybe NT | |
foo = Just (NT "test") | |
bar :: Maybe NT -> Maybe String | |
bar = undefined -- ??? how to do this? | |
-- this would work but it verbose for multiple data constructors | |
bar (Just $ NT s) = Just s | |
bar Nothing = Nothing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unNT :: NT -> String | |
unNT (NT string) = string | |
bar = fmap unNT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment