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
(Function<? super L, ? extends L2> leftMapper, Function<? super R, ? extends R2> rightMapper) Deprecated.<U> Either.RightProjection
<L, U> Either.RightProjection.flatMap
(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
(Either.RightProjection<? extends L, ? extends R> other) Deprecated.Either.RightProjection.orElse
(Supplier<? extends Either.RightProjection<? extends L, ? extends R>> supplier) Deprecated.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.ReturnsSome
value 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
(Either.RightProjection<? extends L, ? extends R> other) Deprecated.Method parameters in io.vavr.control with type arguments of type Either.RightProjectionModifier and TypeMethodDescription<U> Either.RightProjection
<L, U> Either.RightProjection.flatMap
(Function<? super R, ? extends Either.RightProjection<L, ? extends U>> mapper) Deprecated.FlatMaps this RightProjection.Either.RightProjection.orElse
(Supplier<? extends Either.RightProjection<? extends L, ? extends R>> supplier) Deprecated.<U> U
Either.RightProjection.transform
(Function<? super Either.RightProjection<L, R>, ? extends U> f) Deprecated.Transforms thisRightProjection
.