Uses of Class
io.vavr.control.Either.RightProjection
Packages that use Either.RightProjection
Package
Description
-
Uses of Either.RightProjection in io.vavr.control
Methods in io.vavr.control that return Either.RightProjectionModifier and TypeMethodDescription<L2,R2> Either.RightProjection <L2, R2> Either.RightProjection.bimap(@NonNull Function<? super L, ? extends L2> leftMapper, @NonNull Function<? super R, ? extends R2> rightMapper) Deprecated.Applies transformations to the underlyingEitherby delegating toEither.bimap(Function, Function)and returns the right projection of the result.<U> Either.RightProjection<L, U> Either.RightProjection.flatMap(@NonNull Function<? super R, ? extends Either.RightProjection<L, ? extends U>> mapper) Deprecated.FlatMaps this RightProjection.<U> Either.RightProjection<L, U> Deprecated.Maps the right value if the projected Either is a Right.Either.RightProjection.orElse(@NonNull Either.RightProjection<? extends L, ? extends R> other) Deprecated.Returns thisRightProjectionif the underlyingEitheris aEither.Right, otherwise returns the givenotherprojection.Either.RightProjection.orElse(@NonNull Supplier<? extends Either.RightProjection<? extends L, ? extends R>> supplier) Deprecated.Returns thisRightProjectionif the underlyingEitheris aEither.Right, otherwise returns the result of evaluating the givensupplier.Deprecated.Applies the given action to the value if the projected either is a Right.default Either.RightProjection<L, R> Either.right()Deprecated.Either is right-biased.Methods in io.vavr.control that return types with arguments of type Either.RightProjectionModifier and TypeMethodDescriptionDeprecated.ReturnsSomevalue of type R if this is a right projection of a Right value and the predicate applies to the underlying value.Methods in io.vavr.control with parameters of type Either.RightProjectionModifier and TypeMethodDescriptionEither.RightProjection.orElse(@NonNull Either.RightProjection<? extends L, ? extends R> other) Deprecated.Returns thisRightProjectionif the underlyingEitheris aEither.Right, otherwise returns the givenotherprojection.Method parameters in io.vavr.control with type arguments of type Either.RightProjectionModifier and TypeMethodDescription<U> Either.RightProjection<L, U> Either.RightProjection.flatMap(@NonNull Function<? super R, ? extends Either.RightProjection<L, ? extends U>> mapper) Deprecated.FlatMaps this RightProjection.Either.RightProjection.orElse(@NonNull Supplier<? extends Either.RightProjection<? extends L, ? extends R>> supplier) Deprecated.Returns thisRightProjectionif the underlyingEitheris aEither.Right, otherwise returns the result of evaluating the givensupplier.<U> UEither.RightProjection.transform(@NonNull Function<? super Either.RightProjection<L, R>, ? extends U> f) Deprecated.Transforms thisRightProjection.