abstract class LightTypeTag extends Serializable

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

Instance Constructors

  1. new LightTypeTag(bases: () ⇒ Map[AbstractReference, Set[AbstractReference]], inheritanceDb: () ⇒ Map[NameReference, Set[NameReference]])

Abstract Value Members

  1. 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( ... ) @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

    Print internal structures state

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

    Class or type-constructor name of this type, WITH package name, but without prefix names

  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. 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

  23. def shortName: String

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

  24. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String

    Render to string, omitting package names

    Render to string, omitting package names

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

    Extract arguments applied to this type constructor

  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  30. 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( "msg=view.mapValues" )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped