Trait

spire.std

BigIntegerIsReal

Related Doc: package std

Permalink

trait BigIntegerIsReal extends IsIntegral[BigInteger] with BigIntegerOrder with BigIntegerIsSigned with Serializable

Linear Supertypes
Serializable, Serializable, BigIntegerIsSigned, BigIntegerOrder, IsIntegral[BigInteger], IsRational[BigInteger], IsAlgebraic[BigInteger], IsReal[BigInteger], Signed[BigInteger], Order[BigInteger], PartialOrder[BigInteger], Eq[BigInteger], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BigIntegerIsReal
  2. Serializable
  3. Serializable
  4. BigIntegerIsSigned
  5. BigIntegerOrder
  6. IsIntegral
  7. IsRational
  8. IsAlgebraic
  9. IsReal
  10. Signed
  11. Order
  12. PartialOrder
  13. Eq
  14. AnyRef
  15. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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

    Permalink

    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
    BigIntegerIsSignedSigned
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def ceil(a: BigInteger): BigInteger

    Permalink

    Rounds a the nearest integer that is greater than or equal to a.

    Rounds a the nearest integer that is greater than or equal to a.

    Definition Classes
    IsIntegralIsReal
  7. def clone(): AnyRef

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

    Permalink
    Definition Classes
    BigIntegerOrderOrder
  9. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. def eqv(x: BigInteger, y: BigInteger): Boolean

    Permalink

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

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

    Definition Classes
    BigIntegerOrderOrderPartialOrderEq
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def floor(a: BigInteger): BigInteger

    Permalink

    Rounds a the nearest integer that is less than or equal to a.

    Rounds a the nearest integer that is less than or equal to a.

    Definition Classes
    IsIntegralIsReal
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def gt(x: BigInteger, y: BigInteger): Boolean

    Permalink
    Definition Classes
    BigIntegerOrderOrderPartialOrder
  16. def gteqv(x: BigInteger, y: BigInteger): Boolean

    Permalink
    Definition Classes
    BigIntegerOrderOrderPartialOrder
  17. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. def isSignNegative(a: BigInteger): Boolean

    Permalink
    Definition Classes
    Signed
  20. def isSignNonNegative(a: BigInteger): Boolean

    Permalink
    Definition Classes
    Signed
  21. def isSignNonPositive(a: BigInteger): Boolean

    Permalink
    Definition Classes
    Signed
  22. def isSignNonZero(a: BigInteger): Boolean

    Permalink
    Definition Classes
    Signed
  23. def isSignPositive(a: BigInteger): Boolean

    Permalink
    Definition Classes
    Signed
  24. def isSignZero(a: BigInteger): Boolean

    Permalink
    Definition Classes
    Signed
  25. def isWhole(a: BigInteger): Boolean

    Permalink

    Returns true iff a is a an integer.

    Returns true iff a is a an integer.

    Definition Classes
    IsIntegralIsReal
  26. def lt(x: BigInteger, y: BigInteger): Boolean

    Permalink
    Definition Classes
    BigIntegerOrderOrderPartialOrder
  27. def lteqv(x: BigInteger, y: BigInteger): Boolean

    Permalink
    Definition Classes
    BigIntegerOrderOrderPartialOrder
  28. def max(x: BigInteger, y: BigInteger): BigInteger

    Permalink
    Definition Classes
    BigIntegerOrderOrder
  29. def min(x: BigInteger, y: BigInteger): BigInteger

    Permalink
    Definition Classes
    BigIntegerOrderOrder
  30. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  31. def neqv(x: BigInteger, y: BigInteger): Boolean

    Permalink

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

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

    Definition Classes
    BigIntegerOrderEq
  32. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  34. def on[B](f: (B) ⇒ BigInteger): Order[B]

    Permalink

    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
  35. def partialCompare(x: BigInteger, y: BigInteger): Double

    Permalink

    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
  36. def pmax(x: BigInteger, y: BigInteger): Option[BigInteger]

    Permalink

    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
  37. def pmin(x: BigInteger, y: BigInteger): Option[BigInteger]

    Permalink

    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
  38. def reverse: Order[BigInteger]

    Permalink

    Defines an ordering on A where all arrows switch direction.

    Defines an ordering on A where all arrows switch direction.

    Definition Classes
    OrderPartialOrder
  39. def round(a: BigInteger): BigInteger

    Permalink

    Rounds a to the nearest integer.

    Rounds a to the nearest integer.

    Definition Classes
    IsIntegralIsReal
  40. def sign(a: BigInteger): Sign

    Permalink

    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
    Signed
  41. def signum(a: BigInteger): Int

    Permalink

    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
    BigIntegerIsSignedSigned
  42. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  43. def toAlgebraic(a: BigInteger): Algebraic

    Permalink
    Definition Classes
    IsRationalIsAlgebraic
  44. def toBigInt(n: BigInteger): BigInt

    Permalink
    Definition Classes
    BigIntegerIsRealIsIntegral
  45. def toDouble(n: BigInteger): Double

    Permalink

    Approximates a as a Double.

    Approximates a as a Double.

    Definition Classes
    BigIntegerIsRealIsReal
  46. def toRational(a: BigInteger): Rational

    Permalink
    Definition Classes
    IsIntegralIsRational
  47. def toReal(a: BigInteger): Real

    Permalink
    Definition Classes
    IsAlgebraicIsReal
  48. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  49. def tryCompare(x: BigInteger, y: BigInteger): Option[Int]

    Permalink

    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
  50. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from BigIntegerIsSigned

Inherited from BigIntegerOrder

Inherited from IsIntegral[BigInteger]

Inherited from IsRational[BigInteger]

Inherited from IsAlgebraic[BigInteger]

Inherited from IsReal[BigInteger]

Inherited from Signed[BigInteger]

Inherited from Order[BigInteger]

Inherited from PartialOrder[BigInteger]

Inherited from Eq[BigInteger]

Inherited from AnyRef

Inherited from Any

Ungrouped