spire.math

Bound

sealed trait Bound[T] extends AnyRef

A Bound represents one side of an interval; it is parameterized on T, the ordered type covered by the interval.

Bound (by itself) does not imply anything about being an upper and lower bound, or necessarily having a value (it may represent a limit like +infinity).

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Bound
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def binop(rhs: Bound[T])(f: (T, T) ⇒ T): Bound[T]

  2. abstract def compare(rhs: Bound[T]): Int

  3. abstract def comparePt(t: T): Int

  4. implicit abstract def order: Order[T]

  5. abstract def toLower: Lower[T]

  6. abstract def toUpper: Upper[T]

  7. abstract def unop(f: (T) ⇒ T): Bound[T]

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def *(rhs: Bound[T])(implicit ev: Ring[T]): Bound[T]

  5. def *(rhs: T)(implicit ev: Ring[T]): Bound[T]

  6. def +(rhs: Bound[T])(implicit ev: Ring[T]): Bound[T]

  7. def +(rhs: T)(implicit ev: Ring[T]): Bound[T]

  8. def -(rhs: Bound[T])(implicit ev: Ring[T]): Bound[T]

  9. def -(rhs: T)(implicit ev: Ring[T]): Bound[T]

  10. def /(rhs: Bound[T])(implicit ev: Field[T]): Bound[T]

  11. def /(rhs: T)(implicit ev: Field[T]): Bound[T]

  12. def /~(rhs: Bound[T])(implicit ev: EuclideanRing[T]): Bound[T]

  13. def /~(rhs: T)(implicit ev: EuclideanRing[T]): Bound[T]

  14. def <(rhs: Bound[T]): Boolean

  15. def <=(rhs: Bound[T]): Boolean

  16. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  18. def >(rhs: Bound[T]): Boolean

  19. def >=(rhs: Bound[T]): Boolean

  20. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  21. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  22. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  24. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  26. def hashCode(): Int

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

    Definition Classes
    Any
  28. def max(rhs: Bound[T]): Bound[T]

  29. def min(rhs: Bound[T]): Bound[T]

  30. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  33. def pow(rhs: Int)(implicit ev: Ring[T]): Bound[T]

  34. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  35. def toString(): String

    Definition Classes
    AnyRef → Any
  36. def unary_-(implicit ev: Ring[T]): Bound[T]

  37. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any

Ungrouped