Skip to content

Instantly share code, notes, and snippets.

@joakin
Created December 20, 2021 07:39
Show Gist options
  • Save joakin/0b7293fc5d3669b4702f7f986e988e6f to your computer and use it in GitHub Desktop.
Save joakin/0b7293fc5d3669b4702f7f986e988e6f to your computer and use it in GitHub Desktop.
Un safely unwrap a Maybe in production
unwrap : Maybe a -> a
unwrap maybeA =
case maybeA of
Just a ->
a
Nothing ->
unwrap maybeA
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment