abstract class LightTypeTag extends Serializable

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

Abstract Value Members

  1. abstract def binaryFormatVersion: Int
  2. abstract def ref: LightTypeTagRef

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def <:<(maybeParent: LightTypeTag): Boolean
    Annotations
    @inline()
  4. final def =:=(other: LightTypeTag): Boolean
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. def combine(args: LightTypeTag*): LightTypeTag

    Parameterize this type tag with args if it describes an unapplied type lambda

    Parameterize this type tag with args if it describes an unapplied type lambda

    If there are less args given than this type takes parameters, it will remain a type lambda taking remaining arguments:

    F[_, _, _].combine(A, B) = F[A, B, _]
  9. def combineNonPos(args: Option[LightTypeTag]*): LightTypeTag

    Parameterize this type tag with args if it describes an unapplied type lambda

    Parameterize this type tag with args if it describes an unapplied type lambda

    The resulting type lambda will take parameters in places where args was None:

    F[_, _, _].combine(Some(A), None, Some(C)) = F[A, _, C]
  10. def debug(name: String = ""): String

    Print internal structures state

  11. final def decompose: Set[LightTypeTag]
  12. final def decomposeUnion: Set[LightTypeTag]
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(other: Any): Boolean
    Definition Classes
    LightTypeTag → AnyRef → Any
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    LightTypeTag → AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def longNameInternalSymbol: String

    Internal symbol name of type-constructor of this type, with package and containing definition names

  20. def longNameWithPrefix: String

    Class or type-constructor name of this type, with package and prefix names

  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. def removeIntersectionTautologies: LightTypeTag

    Remove types that are supertypes of other types in the intersection from it

    Remove types that are supertypes of other types in the intersection from it

    e.g. transform Tag[TraitSuper & TraitChild & AnyRef] to Tag[TraitChild]

  25. def removeUnionTautologies: LightTypeTag

    Remove types that are subtypes of other types in the union from it

    Remove types that are subtypes of other types in the union from it

    e.g. transform Tag[TraitSuper | TraitChild | Nothing] to Tag[TraitSuper]

  26. def repr: String

    Fully-qualified rendering of a type, including packages and prefix types.

    Fully-qualified rendering of a type, including packages and prefix types. Use toString for a rendering that omits package names

  27. def scalaStyledName: String

    Fully-qualified rendering of a type, including packages and prefix types.

    Fully-qualified rendering of a type, including packages and prefix types. Traditional Scala notation for lambdas, e.g. scala.util.Either[+scala.Int,+_]

  28. def serialize(): Serialized
  29. def shortName: String

    Short class or type-constructor name of this type, without package or prefix names

  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String

    Render to string, omitting package names

    Render to string, omitting package names

    Definition Classes
    LightTypeTag → AnyRef → Any
  32. def typeArgs: List[LightTypeTag]

    Extract arguments applied to this type constructor

  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  36. def withoutArgs: LightTypeTag

    Strip all args from type tag of parameterized type and its supertypes Useful for very rough type-constructor / class-only comparisons.

    Strip all args from type tag of parameterized type and its supertypes Useful for very rough type-constructor / class-only comparisons.

    NOTE: This DOES NOT RESTORE TYPE CONSTRUCTOR/LAMBDA and is NOT equivalent to .typeConstructor call in scala-reflect

    • You won't be able to call combine on result type and partially applied types will not work correctly
    Annotations
    @nowarn()

Deprecated Value Members

  1. def longName: String
    Annotations
    @deprecated
    Deprecated

    (Since version 2.2.2) Produces Scala version dependent output, with incorrect prefixes for types with value prefixes. Use longNameWithPrefix instead, or longNameInternalSymbol for old behavior

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped