Class/Object

izumi.fundamentals.reflection.macrortti

LightTypeTag

Related Docs: object LightTypeTag | package macrortti

Permalink

abstract class LightTypeTag extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Known Subclasses
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]])

    Permalink

Abstract Value Members

  1. abstract def ref: LightTypeTagRef

    Permalink

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def <:<(maybeParent: LightTypeTag): Boolean

    Permalink
    Annotations
    @inline()
  4. final def =:=(other: LightTypeTag): Boolean

    Permalink
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. lazy val basesdb: Map[AbstractReference, Set[AbstractReference]]

    Permalink
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  9. def combine(args: LightTypeTag*): LightTypeTag

    Permalink

    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, ?]
  10. def combineNonPos(args: Option[LightTypeTag]*): LightTypeTag

    Permalink

    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]
  11. def debug(name: String = ""): String

    Permalink

    Print internal structures state

  12. final def decompose: Set[LightTypeTag]

    Permalink
  13. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. def equals(other: Any): Boolean

    Permalink
    Definition Classes
    LightTypeTag → AnyRef → Any
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  16. def hashCode(): Int

    Permalink
    Definition Classes
    LightTypeTag → AnyRef → Any
  17. lazy val idb: Map[NameReference, Set[NameReference]]

    Permalink
  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. def longName: String

    Permalink

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

  20. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  23. def repr: String

    Permalink

    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

  24. def shortName: String

    Permalink

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

  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. def toString(): String

    Permalink

    Render to string, omitting package names

    Render to string, omitting package names

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

    Permalink

    Extract arguments applied to this type constructor

  28. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. def withoutArgs: LightTypeTag

    Permalink

    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

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped