Either#swap

This commit is contained in:
DBotThePony 2024-04-05 12:03:05 +07:00
parent efa659a755
commit eb99d328ac
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 5 additions and 1 deletions

View File

@ -4,7 +4,7 @@ kotlin.code.style=official
specifyKotlinAsDependency=false
projectGroup=ru.dbotthepony.kommons
projectVersion=2.12.0
projectVersion=2.12.1
guavaDepVersion=33.0.0
gsonDepVersion=2.8.9

View File

@ -63,6 +63,10 @@ class Either<L, R> private constructor(val left: KOptional<L>, val right: KOptio
}
}
fun swap(): Either<R, L> {
return Either(right, left)
}
companion object {
@JvmStatic
fun <L, R> left(value: L): Either<L, R> {