Closed nomisRev closed 3 years ago
This PR deprecates up all duplicated constructors, and deprecates all just constructors.
just
This leaves behind only the actual constructors, and the extension constructors.
All constructors of Either after removal of deprecated methods:
val x: Either<String, Int> = Either.Right(1) val y: Either<String, Int> = Either.Left("one") val x2: Either<String, Int> = 1.right() val y2: Either<String, Int> = "one".left()
This PR deprecates up all duplicated constructors, and deprecates all
just
constructors.This leaves behind only the actual constructors, and the extension constructors.
All constructors of Either after removal of deprecated methods: