Eitherのbind
ResultのandThen()
Eitherのfmap
の、引数の関数がEitherを返す版
code:hs
bind :: (a -> Either e b) -> Either e a -> Either e b
ElmだとandThenという関数が用意されている
https://package.elm-lang.org/packages/elm/core/latest/Result#Result