aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuicommon/compat/EitherOps.scala
blob: 96fb0c35eb077954c59e50b73f2051fdeb51546b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package xyz.driver.pdsuicommon.compat

final class EitherOps[A, B](val self: Either[A, B]) extends AnyVal {

  def map[B2](f: B => B2): Either[A, B2] = flatMap { x => Right(f(x)) }

  def flatMap[B2](f: B => Either[A, B2]): Either[A, B2] = self match {
    case Left(x) => Left(x)
    case Right(x) => f(x)
  }

}