given_CommutativeSemifield_LogDouble_Monus_LogDouble_Order_LogDouble_Hash_LogDouble

schrodinger.math.LogDouble$package$.LogDouble$.given_CommutativeSemifield_LogDouble_Monus_LogDouble_Order_LogDouble_Hash_LogDouble$

Attributes

Source:
LogDouble.scala
Graph
Supertypes
Self type

Members list

Concise view

Value members

Concrete methods

override def compare(x: LogDouble, y: LogDouble): Int

Result of comparing x with y. Returns an Int whose sign is:

Result of comparing x with y. Returns an Int whose sign is:

  • negative iff x < y
  • zero iff x = y
  • positive iff x > y

Attributes

Definition Classes
Source:
LogDouble.scala
override def div(x: LogDouble, y: LogDouble): LogDouble

Attributes

Definition Classes
Source:
LogDouble.scala
override def hash(x: LogDouble): Int

Returns the hash code of the given object under this hashing scheme.

Returns the hash code of the given object under this hashing scheme.

Attributes

Definition Classes
Source:
LogDouble.scala
override def monus(x: LogDouble, y: LogDouble): LogDouble

Attributes

Definition Classes
Source:
LogDouble.scala

Attributes

Definition Classes
Source:
LogDouble.scala
override def one: LogDouble

Attributes

Definition Classes
Source:
LogDouble.scala
override def plus(x: LogDouble, y: LogDouble): LogDouble

Attributes

Definition Classes
Source:
LogDouble.scala
override def positiveSumN(x: LogDouble, n: Int): LogDouble

Attributes

Definition Classes
Source:
LogDouble.scala
override def reciprocal(x: LogDouble): LogDouble

Attributes

Definition Classes
Source:
LogDouble.scala
override def sum(as: IterableOnce[LogDouble]): LogDouble

Given a sequence of as, compute the sum.

Given a sequence of as, compute the sum.

Attributes

Definition Classes
Source:
LogDouble.scala
override def times(x: LogDouble, y: LogDouble): LogDouble

Attributes

Definition Classes
Source:
LogDouble.scala
override def zero: LogDouble

Attributes

Definition Classes
Source:
LogDouble.scala

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.

Attributes

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

Returns true if x = y, false otherwise.

Returns true if x = y, false otherwise.

Attributes

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

Returns true if x > y, false otherwise.

Returns true if x > y, false otherwise.

Attributes

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

Returns true if x >= y, false otherwise.

Returns true if x >= y, false otherwise.

Attributes

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

Tests if a is one.

Tests if a is one.

Attributes

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

Tests if a is zero.

Tests if a is zero.

Attributes

Inherited from:
AdditiveMonoid
Source:
Additive.scala
override def lt(x: LogDouble, y: LogDouble): Boolean

Returns true if x < y, false otherwise.

Returns true if x < y, false otherwise.

Attributes

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

Returns true if x <= y, false otherwise.

Returns true if x <= y, false otherwise.

Attributes

Definition Classes
Inherited from:
Order
Source:
Order.scala

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

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

Attributes

Inherited from:
Order
Source:
Order.scala

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

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

Attributes

Inherited from:
Order
Source:
Order.scala
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.

Attributes

Definition Classes
Inherited from:
Order
Source:
Order.scala

Result of comparing x with y. Returns NaN if operands are not comparable. If operands are comparable, returns a Double whose sign is:

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

Attributes

Inherited from:
Order
Source:
Order.scala

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.

Attributes

Inherited from:
PartialOrder
Source:
PartialOrder.scala

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.

Attributes

Inherited from:
PartialOrder
Source:
PartialOrder.scala

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.

Attributes

Inherited from:
PartialOrder
Source:
PartialOrder.scala
override def pow(a: LogDouble, n: Int): A

Given a sequence of as, compute the product.

Given a sequence of as, compute the product.

Attributes

Inherited from:
MultiplicativeMonoid
Source:
Multiplicative.scala
override def sumN(a: LogDouble, n: Int): A

Attributes

Definition Classes
Inherited from:
AdditiveMonoid
Source:
Additive.scala

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

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

Attributes

Inherited from:
Order
Source:
Order.scala

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

Attributes

Inherited from:
PartialOrder
Source:
PartialOrder.scala

Given a sequence of as, combine them and return the total.

Given a sequence of as, combine them and return the total.

If the sequence is empty, returns None. Otherwise, returns Some(total).

Attributes

Definition Classes
Inherited from:
MultiplicativeMonoid
Source:
Multiplicative.scala
override def trySum(as: IterableOnce[LogDouble]): Option[A]

Given a sequence of as, combine them and return the total.

Given a sequence of as, combine them and return the total.

If the sequence is empty, returns None. Otherwise, returns Some(total).

Attributes

Definition Classes
Inherited from:
AdditiveMonoid
Source:
Additive.scala

Extensions

Inherited extensions

extension (x: A)
final def (y: A): A

Attributes

Inherited from:
Monus
Source:
Monus.scala