Uses of Class
de.scravy.bedrock.Either
| Package | Description |
|---|---|
| de.scravy.bedrock |
-
Uses of Either in de.scravy.bedrock
Subclasses of Either in de.scravy.bedrock Modifier and Type Class Description static classEither.Left<L,R>static classEither.Right<L,R>Methods in de.scravy.bedrock that return Either Modifier and Type Method Description static <L, R> Either<L,R>Either. left(L value)<L2> Either<L2,R>Either.Left. mapLeft(Function<L,L2> f)abstract <L2> Either<L2,R>Either. mapLeft(Function<L,L2> f)<L2> Either<L2,R>Either.Right. mapLeft(Function<L,L2> f)<R2> Either<L,R2>Either.Left. mapRight(Function<R,R2> f)abstract <R2> Either<L,R2>Either. mapRight(Function<R,R2> f)<R2> Either<L,R2>Either.Right. mapRight(Function<R,R2> f)static <L, R> Either<L,R>Either. right(R value)Methods in de.scravy.bedrock that return types with arguments of type Either Modifier and Type Method Description static <T, U> CharParser<Either<T,U>>CharParser. either(CharParser<T> leftParser, CharParser<U> rightParser)static <T, U> Parser<Either<T,U>>Parser. either(Parser<T> p1, Parser<U> p2)