Invalid

data class Invalid<out E>(val value: E) : Validated<E, Nothing>

Constructors

Link copied to clipboard
fun <out E> Invalid(value: E)

Functions

Link copied to clipboard
inline fun all(predicate: (Nothing) -> Boolean): Boolean
Link copied to clipboard
inline fun <B> bifoldLeft(    c: B,     fe: (B, E) -> B,     fa: (B, Nothing) -> B): B
Link copied to clipboard
inline fun <B> bifoldMap(    MN: Monoid<B>,     g: (E) -> B,     f: (Nothing) -> B): B
Link copied to clipboard
inline fun <EE, B> bimap(fe: (E) -> EE, fa: (Nothing) -> B): Validated<EE, B>

From arrow.typeclasses.Bifunctor, maps both types of this Validated.

Link copied to clipboard
inline fun <EE, B> bitraverse(fe: (E) -> Iterable<EE>, fa: (Nothing) -> Iterable<B>): List<Validated<EE, B>>
Link copied to clipboard
inline fun <EE, B, C> bitraverseEither(fe: (E) -> Either<EE, B>, fa: (Nothing) -> Either<EE, C>): Either<EE, Validated<B, C>>
Link copied to clipboard
inline fun <B, C> bitraverseNullable(fe: (E) -> B?, fa: (Nothing) -> C?): Validated<B, C>?
Link copied to clipboard
inline fun <B, C> bitraverseOption(fe: (E) -> Option<B>, fa: (Nothing) -> Option<C>): Option<Validated<B, C>>
Link copied to clipboard
inline fun exist(predicate: (Nothing) -> Boolean): Boolean

Is this Valid and matching the given predicate

Link copied to clipboard
inline fun findOrNull(predicate: (Nothing) -> Boolean): Nothing?
Link copied to clipboard
inline fun <B> fold(fe: (E) -> B, fa: (Nothing) -> B): B
Link copied to clipboard
inline fun <B> foldLeft(b: B, f: (B, Nothing) -> B): B

apply the given function to the value with the given B when valid, otherwise return the given B

Link copied to clipboard
inline fun <B> foldMap(MB: Monoid<B>, f: (Nothing) -> B): B
Link copied to clipboard
fun isEmpty(): Boolean
Link copied to clipboard
fun isNotEmpty(): Boolean
Link copied to clipboard
inline fun <B> map(f: (Nothing) -> B): Validated<E, B>

Apply a function to a Valid value, returning a new Valid value

Link copied to clipboard
inline fun <EE> mapLeft(f: (E) -> EE): Validated<EE, Nothing>

Apply a function to an Invalid value, returning a new Invalid value. Or, if the original valid was Valid, return it.

Link copied to clipboard
fun swap(): Validated<Nothing, E>
Link copied to clipboard
inline fun tap(f: (Nothing) -> Unit): Validated<E, Nothing>

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

Link copied to clipboard
inline fun tapInvalid(f: (E) -> Unit): Validated<E, Nothing>

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

Link copied to clipboard
fun toEither(): Either<E, Nothing>

Converts the value to an Either

Link copied to clipboard
fun toList(): List<Nothing>

Convert this value to a single element List if it is Valid, otherwise return an empty List

Link copied to clipboard
fun toOption(): Option<Nothing>

Returns Valid values wrapped in Some, and None for Invalid values

Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
fun toValidatedNel(): ValidatedNel<E, Nothing>

Lift the Invalid value into a NonEmptyList.

Link copied to clipboard
inline fun <EE, B> traverse(fa: (Nothing) -> Either<EE, B>): Either<EE, Validated<E, B>>
inline fun <B> traverse(fa: (Nothing) -> Option<B>): Option<Validated<E, B>>
inline fun <B> traverse(fa: (Nothing) -> Iterable<B>): List<Validated<E, B>>
Link copied to clipboard
inline fun <EE, B> traverseEither(fa: (Nothing) -> Either<EE, B>): Either<EE, Validated<E, B>>
Link copied to clipboard
inline fun <B> traverseNullable(fa: (Nothing) -> B?): Validated<E, B>?
Link copied to clipboard
inline fun <B> traverseOption(fa: (Nothing) -> Option<B>): Option<Validated<E, B>>
Link copied to clipboard
fun void(): Validated<E, Unit>

Discards the A value inside Validated signaling this container may be pointing to a noop or an effect whose return value is deliberately ignored. The singleton value Unit serves as signal.

Link copied to clipboard
inline fun <EE, B> withEither(f: (Either<E, Nothing>) -> Either<EE, B>): Validated<EE, B>

Convert to an Either, apply a function, convert back. This is handy when you want to use the Monadic properties of the Either type.

Properties

Link copied to clipboard
val isInvalid: Boolean
Link copied to clipboard
val isValid: Boolean
Link copied to clipboard
val value: E