Packages

case class ~[+S, +T](fst: S, snd: T) extends Product with Serializable

A class representing ~-pairs

Source
Pickler.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ~
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
Implicitly
  1. by TildeDecorator
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ~(fst: S, snd: T)

Value Members

  1. val fst: S
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product
  3. val snd: T
  4. def ~[T](y: T): ~[~[S, T], T]

    Infix method that forms a ~-pair.

    Infix method that forms a ~-pair.

    Implicit
    This member is added by an implicit conversion from ~[S, T] toTildeDecorator[~[S, T]] performed by method TildeDecorator in scala.tools.nsc.interactive.Pickler.
    Definition Classes
    TildeDecorator