Packages

final case class Annotated[Case[+_], A](caseValue: Case[Annotated[Case, A]], annotations: A) extends Product with Serializable

An Annotated[Case, A] is a recursive data structure where each case Case has been annotated with some additional information A.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Annotated
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Annotated(caseValue: Case[Annotated[Case, A]], annotations: A)

Value Members

  1. val annotations: A
  2. val caseValue: Case[Annotated[Case, A]]
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product