Scala Standard Library 2.13.6 - scala.util.Try
www.scala-lang.org › api › 2Scala Standard Library 2.13.6 - scala.util.Try c scala. util Try Companion object Try sealed abstract class Try[+T] extends Product with Serializable The Try type represents a computation that may either result in an exception, or return a successfully computed value. It's similar to, but semantically different from the scala.util.Either type.
Scala Standard Library 2.13.10 - scala.util.Try
www.scala-lang.org › api › currentScala Standard Library 2.13.8 - scala.util.Try c scala. util Try Companion object Try sealed abstract class Try[+T] extends Product with Serializable The Try type represents a computation that may either result in an exception, or return a successfully computed value. It's similar to, but semantically different from the scala.util.Either type.
Try - Scala
www.scala-lang.org › api › 3The Try type represents a computation that may either result in an exception, or return a successfully computed value. It's similar to, but semantically different from the scala.util.Either type. Instances of Try [T], are either an instance of scala.util.Success [T] or scala.util.Failure [T].