>>> whenNothing Nothing [True, False] [True,False] >>> whenNothing (Just True) [True, False] [True]
>>> whenNothing_ Nothing $ putTextLn "Nothing!" Nothing! >>> whenNothing_ (Just True) $ putTextLn "Nothing!"
>>> isNothing (Just 3) False
>>> isNothing (Just ()) False
>>> isNothing Nothing True
>>> isNothing (Just Nothing) False