>>> maybeToEither 3 $ Just "hello" Right "hello"
>>> maybeToEither 3 Nothing Left 3
>>> maybeToEitherOr (Just "hello") 3 Right "hello"
>>> maybeToEitherOr Nothing 3 Left 3