aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuicommon/compat/EitherOps.scala
blob: d069f863c592a6bb8fbe88d827d9a3ed726472c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)
  }

}