Skip to content

An Either<L,R> multiplatform serializable datatype

License

Notifications You must be signed in to change notification settings

aSoft-Ltd/either

Repository files navigation

Either

badge badge badge badge badge

A multiplatform Either Datatype

Samples

val thing1: Either<Int, String> = Either.Left(1)
val thing2: Either<Int, String> = Either.Right("jaribio")
val thing3 = 3.asEither<Int, String>()

Setup

dependencies {
    implementation("tz.co.asoft:either:0.0.1")
}