Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 814 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 814 Bytes

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")
}