Packages

c

zio.Has

HasSyntax

implicit final class HasSyntax[Self <: Has[_]] extends AnyVal

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HasSyntax
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HasSyntax(self: Self)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. def +[B](b: B)(implicit tag: Tagged[B]): Self with Has[B]
  4. def ++[B <: Has[_]](that: B)(implicit tagged: Tagged[B]): Self with B
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  6. def add[B](b: B)(implicit tagged: Tagged[B], ev: MustNotHave[Self, B]): Self with Has[B]

    Adds a service to the environment.

  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def get[B](implicit ev: <:<[Self, Has[_ <: B]], tagged: Tagged[B]): B

    Retrieves a service from the environment.

  9. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. def prune(implicit tagged: Tagged[Self]): Self

    Prunes the environment to the set of services statically known to be contained within it.

  12. def toString(): String
    Definition Classes
    Any
  13. def union[B <: Has[_]](that: B)(implicit tagged: Tagged[B]): Self with B

    Combines this environment with the specified environment.

  14. def unionAll[B <: Has[_]](that: B): Self with B

    Combines this environment with the specified environment.

    Combines this environment with the specified environment. In the event of service collisions, which may not be reflected in statically known types, the right hand side will be preferred.

  15. def upcast[A, B, C, D, E](implicit arg0: Tagged[A], arg1: Tagged[B], arg2: Tagged[C], arg3: Tagged[D], arg4: Tagged[E], ev: <:<[Self, Has[A] with Has[B] with Has[C] with Has[D] with Has[E]]): Has[A] with Has[B] with Has[C] with Has[D] with Has[E]
  16. def upcast[A, B, C, D](implicit arg0: Tagged[A], arg1: Tagged[B], arg2: Tagged[C], arg3: Tagged[D], ev: <:<[Self, Has[A] with Has[B] with Has[C] with Has[D]]): Has[A] with Has[B] with Has[C] with Has[D]
  17. def upcast[A, B, C](implicit arg0: Tagged[A], arg1: Tagged[B], arg2: Tagged[C], ev: <:<[Self, Has[A] with Has[B] with Has[C]]): Has[A] with Has[B] with Has[C]
  18. def upcast[A, B](implicit arg0: Tagged[A], arg1: Tagged[B], ev: <:<[Self, Has[A] with Has[B]]): Has[A] with Has[B]
  19. def upcast[A](implicit arg0: Tagged[A], ev: <:<[Self, Has[A]]): Has[A]
  20. def update[B](f: (B) ⇒ B)(implicit arg0: Tagged[B], ev: MustHave[Self, B]): Self

    Updates a service in the environment.

Inherited from AnyVal

Inherited from Any

Ungrouped