Packages

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

A class representing ~-pairs

Source
Pickler.scala
Linear Supertypes
Serializable, java.io.Serializable, Product, Equals, AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ~
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. 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. All

Instance Constructors

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

Value Members

  1. val fst: S
  2. val snd: T
  3. 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] to TildeDecorator[~[S, T]] performed by method TildeDecorator in scala.tools.nsc.interactive.Pickler.
    Definition Classes
    TildeDecorator