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

com.github.t3hnar.scalax.examples.RichEitherExample.scala Maven / Gradle / Ivy

The newest version!
package com.github.t3hnar.scalax
package examples

object RichEitherExample {
  {
    val either: Either[Throwable, Int] = Left(new RuntimeException)
    either.toTry
  }

  {
    val either: Either[Throwable, Int] = Right(1)
    either.toTry
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy