implicit final class ZIOBooleanOps[R, E] extends AnyVal
- Alphabetic
- By Inheritance
- ZIOBooleanOps
- AnyVal
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def &&[R1 <: R, E1 >: E](that: => ZIO[R1, E1, Boolean])(implicit trace: Trace): ZIO[R1, E1, Boolean]
Returns the logical conjunction of the
Boolean
value returned by this effect and theBoolean
value returned by the specified effect.Returns the logical conjunction of the
Boolean
value returned by this effect and theBoolean
value returned by the specified effect. This operator has "short circuiting" behavior so if the value returned by this effect is false the specified effect will not be evaluated. - final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def toString(): String
- Definition Classes
- Any
- final def ||[R1 <: R, E1 >: E](that: => ZIO[R1, E1, Boolean])(implicit trace: Trace): ZIO[R1, E1, Boolean]
Returns the logical conjunction of the
Boolean
value returned by this effect and theBoolean
value returned by the specified effect.Returns the logical conjunction of the
Boolean
value returned by this effect and theBoolean
value returned by the specified effect. This operator has "short circuiting" behavior so if the value returned by this effect is true the specified effect will not be evaluated.