scalan.util.Variance.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common_2.12 Show documentation
Show all versions of common_2.12 Show documentation
Compiling Scala to Something special
The newest version!
package scalan.util
sealed trait Variance extends Product with Serializable
case object Invariant extends Variance
case object Covariant extends Variance
case object Contravariant extends Variance