Skip to content

Instantly share code, notes, and snippets.

@lukaszkalnik
Created February 10, 2020 14:59
Show Gist options
  • Save lukaszkalnik/0884760d6f8c9bd99b169adfd8162a0d to your computer and use it in GitHub Desktop.
Save lukaszkalnik/0884760d6f8c9bd99b169adfd8162a0d to your computer and use it in GitHub Desktop.
sealed class Either<out F, out S>
data class Failure<out F>(val failure: F) : Either<F, Nothing>()
data class Success<out S>(val success: S) : Either<Nothing, S>()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment