package com.mikebull94.result /** * - Elm: [Result.map](http://package.elm-lang.org/packages/elm-lang/core/latest/Result#map) * - Haskell: [Data.Bifunctor.first](https://hackage.haskell.org/package/base-4.10.0.0/docs/Data-Bifunctor.html#v:first) */ inline fun Result.map(transform: (V) -> U): Result { return when (this) { is Ok -> ok(transform(value)) is Error -> error(error) } } /** * - Elm: [Result.mapError](http://package.elm-lang.org/packages/elm-lang/core/latest/Result#mapError) * - Haskell: [Data.Bifunctor.right](https://hackage.haskell.org/package/base-4.10.0.0/docs/Data-Bifunctor.html#v:second) */ inline fun Result.mapError(transform: (E) -> U): Result { return when (this) { is Ok -> ok(value) is Error -> error(transform(error)) } } /** * - Elm: [Result.Extra.mapBoth](http://package.elm-lang.org/packages/circuithub/elm-result-extra/1.4.0/Result-Extra#mapBoth) * - Haskell: [Data.Either.either](https://hackage.haskell.org/package/base-4.10.0.0/docs/Data-Either.html#v:either) */ inline fun Result.mapBoth( success: (V) -> U, failure: (E) -> U ): U { return when (this) { is Ok -> success(value) is Error -> failure(error) } } // TODO: better name? /** * - Haskell: [Data.Bifunctor.Bimap](https://hackage.haskell.org/package/base-4.10.0.0/docs/Data-Bifunctor.html#v:bimap) */ inline fun Result.mapEither( success: (V1) -> V2, failure: (E1) -> E2 ): Result { return when (this) { is Ok -> ok(success(value)) is Error -> error(failure(error)) } }