Packages

object Optional

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Optional
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class Present[+A](get: A) extends Optional[A] with Product with Serializable

    Optional value that is present

    Optional value that is present

    A

    type of the value

    get

    the value

Value Members

  1. implicit def AllValuesAreNullable[A](value: A): Optional[A]
  2. implicit def OptionIsNullable[A](value: Option[A]): Optional[A]
  3. case object Absent extends Optional[Nothing] with Product with Serializable

    Optional value that is absent