trait Inject[F[_], G[_]] extends ~>[F, G]

Similar to scalaz.Inject, except:

  • not sealed, thus not restricted to injections into scalaz.Coproduct;
  • doesn't require to implement projection, so more instances are possible.
Self Type
Inject[F, G]
Linear Supertypes
NaturalTransformation[F, G], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Inject
  2. NaturalTransformation
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def inj[A](fa: F[A]): G[A]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def andThen[H[_]](implicit that: Inject[G, H]): Inject[F, H]
  5. def andThen[H[_]](f: ~>[G, H]): ~>[F, H]
    Definition Classes
    NaturalTransformation
  6. def apply[A](fa: F[A]): G[A]
    Definition Classes
    Inject → NaturalTransformation
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  9. def compose[E[_]](implicit that: Inject[E, F]): Inject[E, G]
  10. def compose[E[_]](f: ~>[E, F]): ~>[E, G]
    Definition Classes
    NaturalTransformation
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def narrow[FF[_]](implicit ev: <~~<[FF, F]): ~>[FF, G]
    Definition Classes
    NaturalTransformation
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  20. def or[H[_]](hg: ~>[H, G]): ~>[[γ$0$]Coproduct[F, H, γ$0$], G]
    Definition Classes
    NaturalTransformation
  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. def widen[GG[_]](implicit ev: >~~>[GG, G]): ~>[F, GG]
    Definition Classes
    NaturalTransformation

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from NaturalTransformation[F, G]

Inherited from AnyRef

Inherited from Any

Ungrouped