Packages

t

izumi.distage.model.providers

AbstractFunctoid

trait AbstractFunctoid[+A, Ftoid[+X] <: AbstractFunctoid[X, Ftoid]] extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AbstractFunctoid
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def create[B](provider: Provider): Ftoid[B]
    Attributes
    protected
  2. abstract def get: Provider

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 addDependencies(keys: Iterable[DIKey]): Ftoid[A]
  5. def addDependency(key: DIKey): Ftoid[A]
  6. def addDependency[B](name: Identifier)(implicit arg0: Tag[B]): Ftoid[A]
  7. def addDependency[B](implicit arg0: Tag[B]): Ftoid[A]

    Add B as an unused dependency of this Functoid

  8. def annotateAllParameters(name: Identifier): Ftoid[A]

    Add an @Id(name) annotation to all unannotated parameters

  9. def annotateParameter[P](name: Identifier)(implicit arg0: Tag[P]): Ftoid[A]

    Add an @Id annotation to an unannotated parameter P, e.g.

    Add an @Id annotation to an unannotated parameter P, e.g. for .annotateParameter[P]("my-id"), transform lambda (p: P) => x(p) into (p: P @Id("my-id")) => x(p)

  10. def annotateParameterWhen(name: Identifier)(predicate: (BasicKey) => Boolean): Ftoid[A]

    Add an @Id(name) annotation to all parameters matching predicate

  11. def ap[B, C](that: Ftoid[B])(implicit ev: <:<[A, (B) => C], tag: Tag[C]): Ftoid[C]

    Apply a function produced by this Functoid to the argument produced by that Functoid.

    Apply a function produced by this Functoid to the argument produced by that Functoid.

    Same as

    this.map2(that)((f, a) => f(a))
  12. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  13. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  17. def flatAp[B](that: Ftoid[(A) => B])(implicit arg0: Tag[B]): Ftoid[B]

    Applicative's ap method - can be used to chain transformations like flatMap.

    Applicative's ap method - can be used to chain transformations like flatMap.

    Apply a function produced by that Functoid to the value produced by this Functoid.

    Same as

    this.map2(that)((a, f) => f(a))
  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def map[B](f: (A) => B)(implicit arg0: Tag[B]): Ftoid[B]
  22. def map2[B, C](that: Ftoid[B])(f: (A, B) => C)(implicit arg0: Tag[C]): Ftoid[C]
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  31. def zip[B](that: Ftoid[B]): Ftoid[(A, B)]

Inherited from AnyRef

Inherited from Any

Ungrouped