Skip to content

Instantly share code, notes, and snippets.

@bitemyapp
Created January 31, 2014 22:21
Show Gist options
  • Save bitemyapp/8744460 to your computer and use it in GitHub Desktop.
Save bitemyapp/8744460 to your computer and use it in GitHub Desktop.
λ> import Unsafe.Coerce
λ> let isJust' = unsafeCoerce :: Maybe a -> Bool
λ> isJust' $ Just 1
True
λ> isJust' $ Nothing
False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment