Packages

case class NonReturn(key: String, hard: Boolean) extends Uniform[Needs[_, _], Any, Unit] with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, Uniform[Needs[_, _], Any, Unit], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NonReturn
  2. Serializable
  3. Product
  4. Equals
  5. Uniform
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new NonReturn(key: String, hard: Boolean)

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. def emptyUnless[B >: Unit, T1 <: Any, R1 <: Needs[_, _]](wmb: Uniform[R1, T1, Boolean])(implicit mon: Monoid[B]): Uniform[R1, T1, B]

    Returns monoid empty unless the predicate given is true, will short circuit if possible.

    Returns monoid empty unless the predicate given is true, will short circuit if possible.

    ask[Salary]("salary") emptyUnless ask[Boolean]("employed")
    Definition Classes
    Uniform
  7. def emptyUnless[B >: Unit](predicate: => Boolean)(implicit mon: Monoid[B]): Uniform[Needs[_, _], Any, B]

    Returns monoid empty unless the predicate given is true, will short circuit if possible.

    Returns monoid empty unless the predicate given is true, will short circuit if possible.

    ask[Salary]("salary") emptyUnless user.isEmployed
    Definition Classes
    Uniform
  8. def emptyWhen[B >: Unit, T1 <: Any, R1 <: Needs[_, _]](wmb: Uniform[R1, T1, Boolean])(implicit mon: Monoid[B]): Uniform[R1, T1, B]

    Returns monoid empty when the predicate given is true, will short circuit if possible.

    Returns monoid empty when the predicate given is true, will short circuit if possible.

    ask[Salary]("salary") emptyWhen ask[Boolean]("is-exempt")
    Definition Classes
    Uniform
  9. def emptyWhen[B >: Unit](predicate: => Boolean)(implicit mon: Monoid[B]): Uniform[Needs[_, _], Any, B]

    Returns monoid empty when the predicate given is true, will short circuit if possible.

    Returns monoid empty when the predicate given is true, will short circuit if possible.

    ask[Salary]("salary") emptyWhen user.isExempt
    Definition Classes
    Uniform
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def flatMap[R1 <: Needs[_, _], B, T1 <: Any](f: (Unit) => Uniform[R1, T1, B]): Uniform[R1, T1, B]
    Definition Classes
    Uniform
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. val hard: Boolean
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. val key: String
  16. def map[F[_], B](f: (Unit) => B): Uniform[Needs[_, _], Any, B]
    Definition Classes
    Uniform
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def productElementNames: Iterator[String]
    Definition Classes
    Product
  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def unless[R1 <: Needs[_, _], T1 <: Any](wmb: Uniform[R1, T1, Boolean]): Uniform[R1, T1, Option[Unit]]

    Returns None when the predicate given is true, will short circuit if possible.

    Returns None when the predicate given is true, will short circuit if possible.

    ask[Salary]("salary") unless ask[Boolean]("is-exempt")
    Definition Classes
    Uniform
  23. def unless(predicate: => Boolean): Uniform[Needs[_, _], Any, Option[Unit]]

    Returns None when the predicate given is true, will short circuit if possible.

    Returns None when the predicate given is true, will short circuit if possible.

    ask[Salary]("salary") unless user.isExempt
    Definition Classes
    Uniform
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. def when[R1 <: Needs[_, _], T1 <: Any](wmb: Uniform[R1, T1, Boolean]): Uniform[R1, T1, Option[Unit]]

    Returns None unless the predicate given is true, will short circuit if possible.

    Returns None unless the predicate given is true, will short circuit if possible.

    ask[Salary]("salary") when ask[Boolean]("employed")
    Definition Classes
    Uniform
  28. def when(predicate: => Boolean): Uniform[Needs[_, _], Any, Option[Unit]]

    Returns None unless the predicate given is true, will short circuit if possible.

    Returns None unless the predicate given is true, will short circuit if possible.

    ask[Salary]("salary") when user.isEmployed
    Definition Classes
    Uniform

Deprecated Value Members

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

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Uniform[Needs[_, _], Any, Unit]

Inherited from AnyRef

Inherited from Any

Ungrouped