spire.std

BooleanStructure

class BooleanStructure extends BooleanIsBooleanAlgebra with BooleanIsRig with BooleanOrder with Serializable

Annotations
@SerialVersionUID()
Linear Supertypes
BooleanOrder, Serializable, Serializable, Order[Boolean], PartialOrder[Boolean], Eq[Boolean], BooleanIsRig, CRig[Boolean], MultiplicativeCMonoid[Boolean], MultiplicativeCSemigroup[Boolean], Rig[Boolean], MultiplicativeMonoid[Boolean], Semiring[Boolean], MultiplicativeSemigroup[Boolean], AdditiveMonoid[Boolean], AdditiveSemigroup[Boolean], BooleanIsBooleanAlgebra, BooleanAlgebra[Boolean], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BooleanStructure
  2. BooleanOrder
  3. Serializable
  4. Serializable
  5. Order
  6. PartialOrder
  7. Eq
  8. BooleanIsRig
  9. CRig
  10. MultiplicativeCMonoid
  11. MultiplicativeCSemigroup
  12. Rig
  13. MultiplicativeMonoid
  14. Semiring
  15. MultiplicativeSemigroup
  16. AdditiveMonoid
  17. AdditiveSemigroup
  18. BooleanIsBooleanAlgebra
  19. BooleanAlgebra
  20. AnyRef
  21. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BooleanStructure()

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. def additive: Monoid[Boolean]

    Definition Classes
    AdditiveMonoidAdditiveSemigroup
  5. def and(a: Boolean, b: Boolean): Boolean

  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def compare(x: Boolean, y: Boolean): Int

    Definition Classes
    BooleanOrderOrder
  9. def complement(a: Boolean): Boolean

  10. def dual: BooleanAlgebra[Boolean]

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

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

    Definition Classes
    AnyRef → Any
  13. def eqv(x: Boolean, y: Boolean): Boolean

    Returns true if x and y are equivalent, false otherwise.

    Returns true if x and y are equivalent, false otherwise.

    Definition Classes
    BooleanOrderOrderPartialOrderEq
  14. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  16. def gt(x: Boolean, y: Boolean): Boolean

    Definition Classes
    BooleanOrderOrderPartialOrder
  17. def gteqv(x: Boolean, y: Boolean): Boolean

    Definition Classes
    BooleanOrderOrderPartialOrder
  18. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  19. def imp(a: Boolean, b: Boolean): Boolean

    Definition Classes
    BooleanAlgebra
  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. def lt(x: Boolean, y: Boolean): Boolean

    Definition Classes
    BooleanOrderOrderPartialOrder
  22. def lteqv(x: Boolean, y: Boolean): Boolean

    Definition Classes
    BooleanOrderOrderPartialOrder
  23. def max(x: Boolean, y: Boolean): Boolean

    Definition Classes
    BooleanOrderOrder
  24. def min(x: Boolean, y: Boolean): Boolean

    Definition Classes
    BooleanOrderOrder
  25. def multiplicative: CMonoid[Boolean]

  26. def nand(a: Boolean, b: Boolean): Boolean

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

    Definition Classes
    AnyRef
  28. def neqv(x: Boolean, y: Boolean): Boolean

    Returns false if x and y are equivalent, true otherwise.

    Returns false if x and y are equivalent, true otherwise.

    Definition Classes
    BooleanOrderEq
  29. def nor(a: Boolean, b: Boolean): Boolean

    Definition Classes
    BooleanAlgebra
  30. final def notify(): Unit

    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  32. def nxor(a: Boolean, b: Boolean): Boolean

    Definition Classes
    BooleanAlgebra
  33. def on[B](f: (B) ⇒ Boolean): Order[B]

    Defines an order on B by mapping B to A using f and using As order to order B.

    Defines an order on B by mapping B to A using f and using As order to order B.

    Definition Classes
    OrderPartialOrderEq
  34. def one: Boolean

  35. def or(a: Boolean, b: Boolean): Boolean

  36. def partialCompare(x: Boolean, y: Boolean): Double

    Result of comparing x with y.

    Result of comparing x with y. Returns NaN if operands are not comparable. If operands are comparable, returns a Double whose sign is: - negative iff x < y - zero iff x === y - positive iff x > y

    Definition Classes
    OrderPartialOrder
  37. def plus(a: Boolean, b: Boolean): Boolean

    Definition Classes
    BooleanIsRigAdditiveSemigroup
  38. def pmax(x: Boolean, y: Boolean): Option[Boolean]

    Returns Some(x) if x >= y, Some(y) if x < y, otherwise None.

    Returns Some(x) if x >= y, Some(y) if x < y, otherwise None.

    Definition Classes
    PartialOrder
  39. def pmin(x: Boolean, y: Boolean): Option[Boolean]

    Returns Some(x) if x <= y, Some(y) if x > y, otherwise None.

    Returns Some(x) if x <= y, Some(y) if x > y, otherwise None.

    Definition Classes
    PartialOrder
  40. def pow(a: Boolean, b: Int): Boolean

    This is similar to Semigroup#pow, except that a pow 0 is defined to be the multiplicative identity.

    This is similar to Semigroup#pow, except that a pow 0 is defined to be the multiplicative identity.

    Definition Classes
    BooleanIsRigRigSemiring
  41. def reverse: Order[Boolean]

    Defines an ordering on A where all arrows switch direction.

    Defines an ordering on A where all arrows switch direction.

    Definition Classes
    OrderPartialOrder
  42. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  43. def times(a: Boolean, b: Boolean): Boolean

    Definition Classes
    BooleanIsRigMultiplicativeSemigroup
  44. def toString(): String

    Definition Classes
    AnyRef → Any
  45. def tryCompare(x: Boolean, y: Boolean): Option[Int]

    Result of comparing x with y.

    Result of comparing x with y. Returns None if operands are not comparable. If operands are comparable, returns Some[Int] where the Int sign is: - negative iff x < y - zero iff x == y - positive iff x > y

    Definition Classes
    PartialOrder
  46. def tryGt(x: Boolean, y: Boolean): Option[Boolean]

    Definition Classes
    PartialOrder
  47. def tryGteqv(x: Boolean, y: Boolean): Option[Boolean]

    Definition Classes
    PartialOrder
  48. def tryLt(x: Boolean, y: Boolean): Option[Boolean]

    Definition Classes
    PartialOrder
  49. def tryLteqv(x: Boolean, y: Boolean): Option[Boolean]

    Definition Classes
    PartialOrder
  50. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. def xor(a: Boolean, b: Boolean): Boolean

  54. def zero: Boolean

Inherited from BooleanOrder

Inherited from Serializable

Inherited from Serializable

Inherited from Order[Boolean]

Inherited from PartialOrder[Boolean]

Inherited from Eq[Boolean]

Inherited from BooleanIsRig

Inherited from CRig[Boolean]

Inherited from MultiplicativeCMonoid[Boolean]

Inherited from MultiplicativeCSemigroup[Boolean]

Inherited from Rig[Boolean]

Inherited from MultiplicativeMonoid[Boolean]

Inherited from Semiring[Boolean]

Inherited from MultiplicativeSemigroup[Boolean]

Inherited from AdditiveMonoid[Boolean]

Inherited from AdditiveSemigroup[Boolean]

Inherited from BooleanIsBooleanAlgebra

Inherited from BooleanAlgebra[Boolean]

Inherited from AnyRef

Inherited from Any

Ungrouped