Package com.dudko.tools.safejavastreams.core
package com.dudko.tools.safejavastreams.core
-
ClassesClassDescriptionEither<L,
R> Functional-style container type that represents a value of one of two possible types.Either.Left<L,R> Either.Right<L,R> Result<T,E> Result is a container for a computation that may either result in a value (Success) or an error (Failure).Result.Failure<T,E> Failure branch implementation.Result.Success<T,E> Success branch implementation.Try<T>Try is a container for a computation that may either result in a value (Success) or an exception (Failure).Try.Failure<T>Represents a failed computation.Try.Success<T>Represents a successful computation.