Right

data class Right<out B>(val value: B) : Either<Nothing, B>

The right side of the disjoint union, as opposed to the Left side.

Constructors

Link copied to clipboard
fun <out B> Right(value: B)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
inline fun all(predicate: (B) -> Boolean): Boolean

Returns true if Left or returns the result of the application of the given predicate to the Right value.

Link copied to clipboard
inline fun <C> bifoldLeft(    c: C,     f: (C, Nothing) -> C,     g: (C, B) -> C): C
Link copied to clipboard
inline fun <C> bifoldMap(    MN: Monoid<C>,     f: (Nothing) -> C,     g: (B) -> C): C
Link copied to clipboard
inline fun <C, D> bimap(leftOperation: (Nothing) -> C, rightOperation: (B) -> D): Either<C, D>

Map over Left and Right of this Either

Link copied to clipboard
inline fun <AA, C> bitraverse(fe: (Nothing) -> Iterable<AA>, fa: (B) -> Iterable<C>): List<Either<AA, C>>
Link copied to clipboard
inline fun <AA, C> bitraverseNullable(fl: (Nothing) -> AA?, fr: (B) -> C?): Either<AA, C>?
Link copied to clipboard
inline fun <AA, C> bitraverseOption(fl: (Nothing) -> Option<AA>, fr: (B) -> Option<C>): Option<Either<AA, C>>
Link copied to clipboard
inline fun <AA, C, D> bitraverseValidated(fe: (Nothing) -> Validated<AA, C>, fa: (B) -> Validated<AA, D>): Validated<AA, Either<C, D>>
Link copied to clipboard
inline fun exists(predicate: (B) -> Boolean): Boolean

Returns false if Left or returns the result of the application of the given predicate to the Right value.

Link copied to clipboard
inline fun findOrNull(predicate: (B) -> Boolean): B?
Link copied to clipboard
inline fun <C> fold(ifLeft: (Nothing) -> C, ifRight: (B) -> C): C

Applies ifLeft if this is a Left or ifRight if this is a Right.

Link copied to clipboard
inline fun <C> foldLeft(initial: C, rightOperation: (C, B) -> C): C
Link copied to clipboard
fun <C> foldMap(MN: Monoid<C>, f: (B) -> C): C
Link copied to clipboard
fun isEmpty(): Boolean

Returns true if Left

Link copied to clipboard
fun isLeft(): Boolean
Link copied to clipboard
fun isNotEmpty(): Boolean

Returns true if Right

Link copied to clipboard
fun isRight(): Boolean
Link copied to clipboard
inline fun <C> map(f: (B) -> C): Either<Nothing, C>

The given function is applied if this is a Right.

Link copied to clipboard
inline fun <C> mapLeft(f: (Nothing) -> C): Either<C, B>

The given function is applied if this is a Left.

Link copied to clipboard
fun orNone(): Option<B>
Link copied to clipboard
fun orNull(): B?

Returns the right value if it exists, otherwise null

Link copied to clipboard
fun replicate(n: Int): Either<Nothing, List<B>>
Link copied to clipboard
fun swap(): Either<B, Nothing>

If this is a Left, then return the left value in Right or vice versa.

Link copied to clipboard
inline fun tap(f: (B) -> Unit): Either<Nothing, B>

The given function is applied as a fire and forget effect if this is a Right. When applied the result is ignored and the original Either value is returned

Link copied to clipboard
inline fun tapLeft(f: (Nothing) -> Unit): Either<Nothing, B>

The given function is applied as a fire and forget effect if this is a Left. When applied the result is ignored and the original Either value is returned

Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
fun toValidated(): Validated<Nothing, B>
Link copied to clipboard
fun toValidatedNel(): ValidatedNel<Nothing, B>
Link copied to clipboard
inline fun <C> traverse(fa: (B) -> Option<C>): Option<Either<Nothing, C>>
inline fun <AA, C> traverse(fa: (B) -> Validated<AA, C>): Validated<AA, Either<Nothing, C>>
inline fun <C> traverse(fa: (B) -> Iterable<C>): List<Either<Nothing, C>>
Link copied to clipboard
inline fun <C> traverseNullable(fa: (B) -> C?): Either<Nothing, C>?
Link copied to clipboard
inline fun <C> traverseOption(fa: (B) -> Option<C>): Option<Either<Nothing, C>>
Link copied to clipboard
inline fun <AA, C> traverseValidated(fa: (B) -> Validated<AA, C>): Validated<AA, Either<Nothing, C>>
Link copied to clipboard
fun void(): Either<Nothing, Unit>

Properties

Link copied to clipboard
val value: B