aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/common/compat/EitherOps.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/xyz/driver/common/compat/EitherOps.scala')
-rw-r--r--src/main/scala/xyz/driver/common/compat/EitherOps.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/main/scala/xyz/driver/common/compat/EitherOps.scala b/src/main/scala/xyz/driver/common/compat/EitherOps.scala
deleted file mode 100644
index b3b45e6..0000000
--- a/src/main/scala/xyz/driver/common/compat/EitherOps.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-package xyz.driver.common.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)
- }
-
-}