mirror of
https://github.com/FiloSpaTeam/plutus-pioneer-program.git
synced 2024-11-25 08:12:00 +01:00
31 lines
1,016 B
Haskell
31 lines
1,016 B
Haskell
module Week04.Either where
|
|
|
|
import Text.Read (readMaybe)
|
|
import Week04.Monad
|
|
|
|
readEither :: Read a => String -> Either String a
|
|
readEither s = case readMaybe s of
|
|
Nothing -> Left $ "can't parse: " ++ s
|
|
Just a -> Right a
|
|
|
|
foo :: String -> String -> String -> Either String Int
|
|
foo x y z = case readEither x of
|
|
Left err -> Left err
|
|
Right k -> case readEither y of
|
|
Left err -> Left err
|
|
Right l -> case readEither z of
|
|
Left err -> Left err
|
|
Right m -> Right (k + l + m)
|
|
|
|
bindEither :: Either String a -> (a -> Either String b) -> Either String b
|
|
bindEither (Left err) _ = Left err
|
|
bindEither (Right x) f = f x
|
|
|
|
foo' :: String -> String -> String -> Either String Int
|
|
foo' x y z = readEither x `bindEither` \k ->
|
|
readEither y `bindEither` \l ->
|
|
readEither z `bindEither` \m ->
|
|
Right (k + l + m)
|
|
|
|
foo'' :: String -> String -> String -> Either String Int
|
|
foo'' x y z = threeInts (readEither x) (readEither y) (readEither z)
|