conjunction

object conjunction extends Monoid[Boolean]
trait Monoid[Boolean]
trait Semigroup[Boolean]
class Object
trait Matchable
class Any

Type members

Inherited classlikes

trait MonoidLaw

Monoid instances must satisfy scalaz.Semigroup.SemigroupLaw and 2 additional laws:

Monoid instances must satisfy scalaz.Semigroup.SemigroupLaw and 2 additional laws:

  • '''left identity''': forall a. append(zero, a) == a
  • '''right identity''' : forall a. append(a, zero) == a
Inherited from
Monoid

A semigroup in type F must satisfy two laws:

A semigroup in type F must satisfy two laws:

  • '''closure''': ∀ a, b in F, append(a, b) is also in F. This is enforced by the type system.
  • '''associativity''': ∀ a, b, c in F, the equation append(append(a, b), c) = append(a, append(b , c)) holds.
Inherited from
Semigroup

Value members

Concrete methods

def append(f1: Boolean, f2: => Boolean): Boolean
def zero: Boolean

Inherited methods

final
def applicative: Applicative[[α] =>> Boolean]

A monoidal applicative functor, that implements point and ap with the operations zero and append respectively. Note that the type parameter α in Applicative[λ[α => F]] is discarded; it is a phantom type. As such, the functor cannot support scalaz.Bind.

A monoidal applicative functor, that implements point and ap with the operations zero and append respectively. Note that the type parameter α in Applicative[λ[α => F]] is discarded; it is a phantom type. As such, the functor cannot support scalaz.Bind.

Inherited from
Monoid
final
def apply: Apply[[α] =>> Boolean]

An scalaz.Apply, that implements ap with append. Note that the type parameter α in Apply[λ[α => F]] is discarded; it is a phantom type. As such, the functor cannot support scalaz.Bind.

An scalaz.Apply, that implements ap with append. Note that the type parameter α in Apply[λ[α => F]] is discarded; it is a phantom type. As such, the functor cannot support scalaz.Bind.

Inherited from
Semigroup
final
def category: Category[[α, β] =>> Boolean]

Every Monoid gives rise to a scalaz.Category, for which the type parameters are phantoms.

Every Monoid gives rise to a scalaz.Category, for which the type parameters are phantoms.

Note

category.monoid = this

Inherited from
Monoid
final
def compose: Compose[[α, β] =>> Boolean]

Every Semigroup gives rise to a scalaz.Compose, for which the type parameters are phantoms.

Every Semigroup gives rise to a scalaz.Compose, for which the type parameters are phantoms.

Note

compose.semigroup = this

Inherited from
Semigroup
final
def ifEmpty[B](a: Boolean)(t: => B)(f: => B)(implicit eq: Equal[Boolean]): B
Inherited from
Monoid
def isMZero(a: Boolean)(implicit eq: Equal[Boolean]): Boolean

Whether a == zero.

Whether a == zero.

Inherited from
Monoid
Inherited from
Monoid
def multiply(value: Boolean, n: Int): Boolean

For n = 0, zero For n = 1, append(zero, value) For n = 2, append(append(zero, value), value)

For n = 0, zero For n = 1, append(zero, value) For n = 2, append(append(zero, value), value)

Inherited from
Monoid
def multiply1(value: Boolean, n: Int): Boolean

For n = 0, value For n = 1, append(value, value) For n = 2, append(append(value, value), value)

For n = 0, value For n = 1, append(value, value) For n = 2, append(append(value, value), value)

The default definition uses peasant multiplication, exploiting associativity to only require O(log n) uses of append

Inherited from
Semigroup
final
def onEmpty[A, B](a: Boolean)(v: => B)(implicit eq: Equal[Boolean], mb: Monoid[B]): B
Inherited from
Monoid
final
def onNotEmpty[B](a: Boolean)(v: => B)(implicit eq: Equal[Boolean], mb: Monoid[B]): B
Inherited from
Monoid

Inherited fields

Inherited from
Monoid
Inherited from
Semigroup