All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wavesenterprise.utils.EitherUtils.scala Maven / Gradle / Ivy

There is a newer version: 1.16.0
Show newest version
package com.wavesenterprise.utils

object EitherUtils {
  implicit class EitherExt[A, B](ei: Either[A, B]) {
    def explicitGet(): B = ei match {
      case Left(value)  => throw new Exception(value.toString)
      case Right(value) => value
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy