FBooleanOps

final class FBooleanOps[F[_]](fBoolean: F[Boolean]) extends AnyVal
class AnyVal
trait Matchable
class Any

Value members

Concrete methods

def andM(other: => F[Boolean])(implicit F: Monad[F]): F[Boolean]

Behaves like && but inside the F context.

Behaves like && but inside the F context.

Wont evaluate other unless this evaluates to true

Source:
fboolean.scala
def not(implicit F: Functor[F]): F[Boolean]

Transforms this F[Boolean] by negating the Boolean

Transforms this F[Boolean] by negating the Boolean

Source:
fboolean.scala
def orM(other: => F[Boolean])(implicit F: Monad[F]): F[Boolean]

Behaves like || but inside the F context.

Behaves like || but inside the F context.

Wont evaluate other unless this evaluates to false

Source:
fboolean.scala