Packages

class SignAlgebra extends CMonoid[Sign] with Signed[Sign] with Order[Sign]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SignAlgebra
  2. Order
  3. PartialOrder
  4. Eq
  5. Signed
  6. CommutativeMonoid
  7. CommutativeSemigroup
  8. Monoid
  9. Semigroup
  10. Serializable
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new SignAlgebra()

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 abs(a: Sign): Sign

    An idempotent function that ensures an object has a non-negative sign.

    An idempotent function that ensures an object has a non-negative sign.

    Definition Classes
    SignAlgebraSigned
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. def combine(a: Sign, b: Sign): Sign
    Definition Classes
    SignAlgebra → Semigroup
  8. def combineAll(as: IterableOnce[Sign]): Sign
    Definition Classes
    Monoid
  9. def combineAllOption(as: IterableOnce[Sign]): Option[Sign]
    Definition Classes
    Monoid → Semigroup
  10. def combineN(a: Sign, n: Int): Sign
    Definition Classes
    Monoid → Semigroup
  11. def compare(x: Sign, y: Sign): ComparisonBundle
    Definition Classes
    SignAlgebraOrder
  12. def context_abs(a: Sign): Sign
    Definition Classes
    SignAlgebraSigned
  13. def empty: Sign
    Definition Classes
    SignAlgebra → Monoid
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  16. def eqv(x: Sign, y: Sign): Bool

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

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

    Definition Classes
    OrderPartialOrderEq
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. def gt(x: Sign, y: Sign): Bool
    Definition Classes
    OrderPartialOrder
  19. def gteqv(x: Sign, y: Sign): Bool
    Definition Classes
    OrderPartialOrder
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. def isEmpty(a: Sign)(implicit ev: cats.kernel.Eq[Sign]): Boolean
    Definition Classes
    Monoid
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def isSignNegative(a: Sign): Bool
    Definition Classes
    Signed
  24. def isSignNonNegative(a: Sign): Bool
    Definition Classes
    Signed
  25. def isSignNonPositive(a: Sign): Bool
    Definition Classes
    Signed
  26. def isSignNonZero(a: Sign): Bool
    Definition Classes
    Signed
  27. def isSignPositive(a: Sign): Bool
    Definition Classes
    Signed
  28. def isSignZero(a: Sign): Bool
    Definition Classes
    Signed
  29. def lt(x: Sign, y: Sign): Bool
    Definition Classes
    OrderPartialOrder
  30. def lteqv(x: Sign, y: Sign): Bool
    Definition Classes
    OrderPartialOrder
  31. def max(x: Sign, y: Sign): Sign
    Definition Classes
    Order
  32. def min(x: Sign, y: Sign): Sign
    Definition Classes
    Order
  33. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  34. def neqv(x: Sign, y: Sign): Bool

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

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

    Definition Classes
    Eq
  35. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  36. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  37. def on[B <: Data](f: (B) => Sign): 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
  38. def partialCompare(x: Sign, y: Sign): ValidIO[ComparisonBundle]

    Result of comparing x with y.

    Result of comparing x with y. Returns ValidIO[ComparisonBundle] with valid false if operands are not comparable. If operands are comparable, bits.lt will be true if x < y and bits.eq will be true if x = y

    Definition Classes
    OrderPartialOrder
  39. def pmax(x: Sign, y: Sign): ValidIO[Sign]

    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 pmin(x: Sign, y: Sign): ValidIO[Sign]

    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
  41. def repeatedCombineN(a: Sign, n: Int): Sign
    Attributes
    protected[this]
    Definition Classes
    Semigroup
  42. def reverse: Order[Sign]

    Defines an ordering on A where all arrows switch direction.

    Defines an ordering on A where all arrows switch direction.

    Definition Classes
    OrderPartialOrder
  43. def sign(a: Sign): Sign

    Returns Zero if a is 0, Positive if a is positive, and Negative is a is negative.

    Returns Zero if a is 0, Positive if a is positive, and Negative is a is negative.

    Definition Classes
    SignAlgebraSigned
  44. def signum(a: Sign): ComparisonBundle

    Returns 0 if a is 0, > 0 if a is positive, and < 0 is a is negative.

    Returns 0 if a is 0, > 0 if a is positive, and < 0 is a is negative.

    Definition Classes
    SignAlgebraSigned
  45. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  46. def toString(): String
    Definition Classes
    AnyRef → Any
  47. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  48. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  49. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Order[Sign]

Inherited from PartialOrder[Sign]

Inherited from Eq[Sign]

Inherited from Signed[Sign]

Inherited from CommutativeMonoid[Sign]

Inherited from CommutativeSemigroup[Sign]

Inherited from Monoid[Sign]

Inherited from Semigroup[Sign]

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped