Object

izumi.fundamentals.reflection

Tags

Related Doc: package reflection

Permalink

object Tags

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Tags
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait AnyTag extends AnyRef

    Permalink
  2. trait HKTag[T] extends AnyTag

    Permalink

    Internal unsafe API representing a poly-kinded, higher-kinded type tag.

    Internal unsafe API representing a poly-kinded, higher-kinded type tag.

    To create a Tag* implicit for an arbitrary kind use the following syntax:

    type TagK5[K[_, _, _, _, _]] = HKTag[ { type Arg[A, B, C, D, E] = K[A, B, C, D, E] } ]

    As an argument to HKTag, you should specify the type variables your type parameter will take and apply them to it, in order.

    type TagFGC[K[_[_, _], _[_], _[_[_], _, _, _]] = HKTag[ { type Arg[A[_, _], B[_], C[_[_], _, _, _]] = K[A, B, C] } ]

    A convenience macro Tag.auto.T is available to automatically create a type lambda for a type of any kind:

    def x[K[_[_, _], _[_], _[_[_], _, _, _]: Tag.auto.T]: Tag.auto.T[K] = implicitly[Tag.auto.T[K]]
  3. final class HKTagMaterializer[T] extends AnyVal

    Permalink

    Force eager expansion for all recursive implicit searches inside TagMacro by introducing a proxy implicit to display better error messages

    Force eager expansion for all recursive implicit searches inside TagMacro by introducing a proxy implicit to display better error messages

    See also

    test ResourceEffectBindingsTest."Display tag macro stack trace when ResourceTag is not found"

  4. trait Tag[T] extends AnyTag

    Permalink

    Like scala.reflect.api.TypeTags.TypeTag, but supports higher-kinded type tags via TagK type class.

    Like scala.reflect.api.TypeTags.TypeTag, but supports higher-kinded type tags via TagK type class.

    In context of DI this lets you define modules parameterized by higher-kinded type parameters. This is especially helpful for applying tagless final style

    Example:

    class MyModule[F[_]: Monad: TagK] {
      make[MyService[F]]
      make[F[Int]].named("lucky-number").from(Monad[F].pure(7))
    }

    Without a TagK constraint above, this example would fail with no TypeTag available for MyService[F] error

    Currently some limitations apply as to when a Tag will be correctly constructed: * Type Parameters do not yet resolve inside structural refinements, e.g. T in

    Tag[{ def x: T}]

    * TagK* does not resolve for constructors with bounded parameters, e.g. S in

    class Abc[S <: String]; TagK[Abc]

    (You can still have a bound in partial application: e.g.

    class Abc[S <: String, A]; TagK[Abc["hi", ?]]

    * Further details at https://github.com/7mind/izumi/issues/374

    Annotations
    @implicitNotFound( ... )
    See also

    "Lightweight Scala Reflection and why Dotty needs TypeTags reimplemented" https://blog.7mind.io/lightweight-reflection.html

  5. type TagK[K[_]] = HKTag[AnyRef { type Arg[A] = K[A] }]

    Permalink

    TagK is like a scala.reflect.api.TypeTags.TypeTag but for higher-kinded types.

    TagK is like a scala.reflect.api.TypeTags.TypeTag but for higher-kinded types.

    Example:

    def containerTypesEqual[F[_]: TagK, K[_]: TagK]): Boolean = TagK[F].tag.tpe =:= TagK[K].tag.tpe
    
    containerTypesEqual[Set, collection.immutable.Set] == true
    containerTypesEqual[Array, List] == false
  6. type TagK3[K[_, _, _]] = HKTag[AnyRef { type Arg[A, B, C] = K[A,B,C] }]

    Permalink
  7. type TagKK[K[_, _]] = HKTag[AnyRef { type Arg[A, B] = K[A,B] }]

    Permalink
  8. type TagT[K[_[_]]] = HKTag[AnyRef { type Arg[A[_]] = K[A] }]

    Permalink
  9. type TagTK[K[_[_], _]] = HKTag[AnyRef { type Arg[A[_], B] = K[A,B] }]

    Permalink
  10. type TagTK3[K[_[_], _, _, _]] = HKTag[AnyRef { type Arg[A[_], B, C, D] = K[A,B,C,D] }]

    Permalink
  11. type TagTKK[K[_[_], _, _]] = HKTag[AnyRef { type Arg[A[_], B, C] = K[A,B,C] }]

    Permalink
  12. trait WeakTag[T] extends AnyTag

    Permalink
  13. trait WeakTagInstances1 extends AnyRef

    Permalink

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 ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object HKTag

    Permalink
  5. object HKTagMaterializer

    Permalink
  6. object Tag

    Permalink
  7. object TagK

    Permalink
  8. object TagK3

    Permalink
  9. object TagKK

    Permalink
  10. object TagT

    Permalink
  11. object TagTK

    Permalink
  12. object TagTK3

    Permalink
  13. object TagTKK

    Permalink
  14. object WeakTag extends WeakTagInstances1

    Permalink
  15. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  16. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  17. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  25. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  27. final def wait(arg0: Long, arg1: Int): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

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 AnyRef

Inherited from Any

Ungrouped