Packages

package errorhandling

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. sealed trait Either[+E, +A] extends AnyRef
  2. case class Employee(name: String, department: String, manager: Option[String]) extends Product with Serializable
  3. case class Left[+E](get: E) extends Either[E, Nothing] with Product with Serializable
  4. sealed trait Option[+A] extends AnyRef
  5. case class Right[+A](get: A) extends Either[Nothing, A] with Product with Serializable
  6. case class Some[+A](get: A) extends Option[A] with Product with Serializable

Value Members

  1. object Either
  2. object ExampleHelper
  3. case object None extends Option[Nothing] with Product with Serializable
  4. object Option

Ungrouped