>>> collapseEither (Right 3) 3 >>> collapseEither (Left "hello") "hello"
>>> eitherToMaybe $ Right 3 Just 3
>>> eitherToMaybe $ Left "bye" Nothing