Class

algebra.lattice

DualBool

Related Doc: package lattice

Permalink

class DualBool[A] extends Bool[A]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DualBool
  2. Bool
  3. GenBool
  4. Heyting
  5. BoundedDistributiveLattice
  6. DistributiveLattice
  7. BoundedLattice
  8. BoundedJoinSemilattice
  9. BoundedMeetSemilattice
  10. Lattice
  11. MeetSemilattice
  12. JoinSemilattice
  13. Serializable
  14. Serializable
  15. AnyRef
  16. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DualBool(orig: Bool[A])

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def and(a: A, b: A): A

    Permalink
    Definition Classes
    DualBoolGenBoolHeyting
  5. def asBoolRing: BoolRing[A]

    Permalink

    Every Boolean algebra is a BoolRing, with multiplication defined as and and addition defined as xor.

    Every Boolean algebra is a BoolRing, with multiplication defined as and and addition defined as xor. Bool does not extend BoolRing because, e.g. we might want a Bool[Int] and CommutativeRing[Int] to refer to different structures, by default.

    Note that the ring returned by this method is not an extension of the Rig returned from BoundedDistributiveLattice.asCommutativeRig.

    Definition Classes
    BoolGenBool
  6. def asCommutativeRig: CommutativeRig[A]

    Permalink

    Return a CommutativeRig using join and meet.

    Return a CommutativeRig using join and meet. Note this must obey the commutative rig laws since meet(a, one) = a, and meet and join are associative, commutative and distributive.

    Definition Classes
    BoundedDistributiveLattice
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def complement(a: A): A

    Permalink
    Definition Classes
    DualBoolHeyting
  10. def dual: Bool[A]

    Permalink

    This is the lattice with meet and join swapped

    This is the lattice with meet and join swapped

    Definition Classes
    DualBoolBoolBoundedDistributiveLatticeBoundedLatticeLattice
  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. def imp(a: A, b: A): A

    Permalink
    Definition Classes
    DualBoolBoolHeyting
  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. def isOne(a: A)(implicit ev: Eq[A]): Boolean

    Permalink
    Definition Classes
    BoundedMeetSemilattice
  19. def isZero(a: A)(implicit ev: Eq[A]): Boolean

    Permalink
    Definition Classes
    BoundedJoinSemilattice
  20. def join(a: A, b: A): A

    Permalink
    Definition Classes
    GenBoolJoinSemilattice
  21. def joinPartialOrder(implicit ev: Eq[A]): PartialOrder[A]

    Permalink
    Definition Classes
    JoinSemilattice
  22. def joinSemilattice: BoundedSemilattice[A]

    Permalink
  23. def meet(a: A, b: A): A

    Permalink
    Definition Classes
    GenBoolMeetSemilattice
  24. def meetPartialOrder(implicit ev: Eq[A]): PartialOrder[A]

    Permalink
    Definition Classes
    MeetSemilattice
  25. def meetSemilattice: BoundedSemilattice[A]

    Permalink
  26. def nand(a: A, b: A): A

    Permalink
    Definition Classes
    DualBoolHeyting
  27. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  28. def nor(a: A, b: A): A

    Permalink
    Definition Classes
    DualBoolHeyting
  29. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. def nxor(a: A, b: A): A

    Permalink
    Definition Classes
    DualBoolHeyting
  32. def one: A

    Permalink
    Definition Classes
    DualBoolBoundedMeetSemilattice
  33. def or(a: A, b: A): A

    Permalink
    Definition Classes
    DualBoolGenBoolHeyting
  34. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  35. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  36. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. def without(a: A, b: A): A

    Permalink

    The operation of relative complement, symbolically often denoted a\b (the symbol for set-theoretic difference, which is the meaning of relative complement in the lattice of sets).

    The operation of relative complement, symbolically often denoted a\b (the symbol for set-theoretic difference, which is the meaning of relative complement in the lattice of sets).

    Definition Classes
    BoolGenBool
  40. def xor(a: A, b: A): A

    Permalink

    Logical exclusive or, set-theoretic symmetric difference.

    Logical exclusive or, set-theoretic symmetric difference. Defined as a\b ∨ b\a.

    Definition Classes
    DualBoolBoolGenBoolHeyting
  41. def zero: A

    Permalink
    Definition Classes
    DualBoolBoundedJoinSemilattice

Inherited from Bool[A]

Inherited from GenBool[A]

Inherited from Heyting[A]

Inherited from BoundedDistributiveLattice[A]

Inherited from DistributiveLattice[A]

Inherited from BoundedLattice[A]

Inherited from BoundedJoinSemilattice[A]

Inherited from BoundedMeetSemilattice[A]

Inherited from Lattice[A]

Inherited from MeetSemilattice[A]

Inherited from JoinSemilattice[A]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped