Packages

package opt

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

Type Members

  1. sealed trait Opt[+T] extends AnyRef

    Wrapper around Option that implicitly lifts unwrapped values into a Som (analogous to Some)

    Wrapper around Option that implicitly lifts unwrapped values into a Som (analogous to Some)

    Useful for allowing

  2. case class Som[+T](t: T) extends Opt[T] with Product with Serializable
  3. trait syntax extends AnyRef

Value Members

  1. object Non extends Opt[Nothing] with Product with Serializable
  2. object Opt
  3. object Som extends Serializable
  4. object syntax extends syntax

Inherited from AnyRef

Inherited from Any

Ungrouped