Last active
December 8, 2019 21:42
-
-
Save deeperunderstanding/2762515d43c519cfc4d6e46a76464099 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sealed class Try<T> { | |
companion object { | |
operator fun <T> invoke(func: () -> T): Try<T> = | |
try { | |
Success(func()) | |
} catch (error: Exception) { | |
Failure(error) | |
} | |
object TrySequence { | |
operator fun <T> Try<T>.component1(): T = when (this) { | |
is Success -> this.value | |
is Failure -> throw this.error | |
} | |
} | |
fun <T> sequential(func: TrySequence.() -> T): Try<T> = Try { func(TrySequence) } | |
} | |
abstract fun <R> map(transform: (T) -> R): Try<R> | |
abstract fun <R> flatMap(func: (T) -> Try<R>): Try<R> | |
abstract fun <R> recover(transform: (Exception) -> R): Try<R> | |
abstract fun <R> recoverWith(transform: (Exception) -> Try<R>): Try<R> | |
} | |
class Success<T>(val value: T) : Try<T>() { | |
override fun <R> map(transform: (T) -> R): Try<R> = Try { transform(value) } | |
override fun <R> flatMap(func: (T) -> Try<R>): Try<R> = | |
Try { func(value) }.let { | |
when (it) { | |
is Success -> it.value | |
is Failure -> it as Try<R> | |
} | |
} | |
override fun <R> recover(transform: (Exception) -> R): Try<R> = this as Try<R> | |
override fun <R> recoverWith(transform: (Exception) -> Try<R>): Try<R> = this as Try<R> | |
override fun toString(): String { | |
return "Success(${value.toString()})" | |
} | |
} | |
class Failure<T>(val error: Exception) : Try<T>() { | |
override fun <R> map(transform: (T) -> R): Try<R> = this as Try<R> | |
override fun <R> flatMap(func: (T) -> Try<R>): Try<R> = this as Try<R> | |
override fun <R> recover(transform: (Exception) -> R): Try<R> = Try { transform(error) } | |
override fun <R> recoverWith(transform: (Exception) -> Try<R>): Try<R> = Try { transform(error) }.let { | |
when (it) { | |
is Success -> it.value | |
is Failure -> it as Try<R> | |
} | |
} | |
override fun toString(): String { | |
return "Failure(${error.message})" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment