Skip to content

Instantly share code, notes, and snippets.

@jferris
Created March 31, 2016 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jferris/b5111c0b99e35e8f2d45b3b6d36a4a5c to your computer and use it in GitHub Desktop.
Save jferris/b5111c0b99e35e8f2d45b3b6d36a4a5c to your computer and use it in GitHub Desktop.
Empty Operator
(?) :: Foldable t => t a -> t a -> t a
a ? b
| null a = b
| otherwise = a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment