abstract class Possible[S, A] extends Serializable

Typeclass that defines an Optional from a monomorphic container S to a possible value A. There must be at most one A in S.

S

source of the Optional

A

target of the Optional, A is supposed to be unique for a given S

Annotations
@deprecated
Deprecated

(Since version 3.0.0-M1) no replacement

Source
Possible.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Possible
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Possible()

Abstract Value Members

  1. abstract def possible: Optional[S, A]