given_CommutativeSemifield_LogDouble_Monus_LogDouble_Order_LogDouble_Hash_LogDouble

Value members

Concrete methods

override def compare(x: LogDouble, y: LogDouble): Int
Definition Classes
override def div(x: LogDouble, y: LogDouble): LogDouble
Definition Classes
override def hash(x: LogDouble): Int
Definition Classes
override def monus(x: LogDouble, y: LogDouble): LogDouble
Definition Classes
Definition Classes
override def one: LogDouble
Definition Classes
override def plus(x: LogDouble, y: LogDouble): LogDouble
Definition Classes
override def positiveSumN(x: LogDouble, n: Int): LogDouble
Definition Classes
override def reciprocal(x: LogDouble): LogDouble
Definition Classes
override def sum(as: IterableOnce[LogDouble]): LogDouble
Definition Classes
override def times(x: LogDouble, y: LogDouble): LogDouble
Definition Classes
override def zero: LogDouble
Definition Classes

Inherited methods

Like compare, but returns a cats.kernel.Comparison instead of an Int. Has the benefit of being able to pattern match on, but not as performant.

Like compare, but returns a cats.kernel.Comparison instead of an Int. Has the benefit of being able to pattern match on, but not as performant.

Inherited from:
Order
override def eqv(x: LogDouble, y: LogDouble): Boolean

Returns true if x = y, false otherwise.

Returns true if x = y, false otherwise.

Definition Classes
Inherited from:
Order
override def gt(x: LogDouble, y: LogDouble): Boolean

Returns true if x > y, false otherwise.

Returns true if x > y, false otherwise.

Definition Classes
Inherited from:
Order
override def gteqv(x: LogDouble, y: LogDouble): Boolean

Returns true if x >= y, false otherwise.

Returns true if x >= y, false otherwise.

Definition Classes
Inherited from:
Order
def isOne(a: LogDouble)(implicit ev: Eq[LogDouble]): Boolean

Tests if a is one.

Tests if a is one.

Inherited from:
MultiplicativeMonoid
def isZero(a: LogDouble)(implicit ev: Eq[LogDouble]): Boolean

Tests if a is zero.

Tests if a is zero.

Inherited from:
AdditiveMonoid
override def lt(x: LogDouble, y: LogDouble): Boolean

Returns true if x < y, false otherwise.

Returns true if x < y, false otherwise.

Definition Classes
Inherited from:
Order
override def lteqv(x: LogDouble, y: LogDouble): Boolean

Returns true if x <= y, false otherwise.

Returns true if x <= y, false otherwise.

Definition Classes
Inherited from:
Order

If x > y, return x, else return y.

If x > y, return x, else return y.

Inherited from:
Order

If x < y, return x, else return y.

If x < y, return x, else return y.

Inherited from:
Order
override def neqv(x: LogDouble, y: LogDouble): Boolean

Returns true if x != y, false otherwise.

Returns true if x != y, false otherwise.

Note: this default implementation provided by Order is the same as the one defined in Eq, but for purposes of binary compatibility, the override in Order has not yet been removed. See this discussion.

Definition Classes
Inherited from:
Order
Inherited from:
Order

Like partialCompare, but returns a cats.kernel.Comparison instead of an Double. Has the benefit of being able to pattern match on, but not as performant.

Like partialCompare, but returns a cats.kernel.Comparison instead of an Double. Has the benefit of being able to pattern match on, but not as performant.

Inherited from:
PartialOrder

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.

Inherited from:
PartialOrder

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.

Inherited from:
PartialOrder
@nowarn("msg=deprecated")

Given a sequence of as, compute the product.

Given a sequence of as, compute the product.

Inherited from:
MultiplicativeMonoid
override def sumN(a: LogDouble, n: Int): LogDouble
Definition Classes
Inherited from:
AdditiveMonoid

Convert a Order[A] to a scala.math.Ordering[A] instance.

Convert a Order[A] to a scala.math.Ordering[A] instance.

Inherited from:
Order

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:

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
Inherited from:
PartialOrder
@nowarn("msg=deprecated")
@nowarn("msg=deprecated")
Definition Classes
Inherited from:
AdditiveMonoid

Extensions

Inherited extensions

extension (x: A)
final def (y: A): LogDouble
Inherited from:
Monus