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

scoder.DecodeOk.scala Maven / Gradle / Ivy

The newest version!
package scoder

object DecodeOk {

  def apply[T](t: T): DecodeResult[Nothing, T] =
    DecodeResult(Right(t))

  def unapply[E, T](result: DecodeResult[E, T]): Option[T] = result match {
    case DecodeResult(Right(t)) => Some(t)
    case _ => None
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy