aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuicommon/compat/Implicits.scala
blob: 147c9e8bdb7c7a6a87712b39602de4b09059a49d (plain) (blame)
1
2
3
4
5
6
7
package xyz.driver.pdsuicommon.compat

object Implicits {

  implicit def toEitherOps[A, B](self: Either[A, B]): EitherOps[A, B] = new EitherOps(self)

}