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 /:(lhs: T)(implicit ev: Field[T]): Bound[T]

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

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

  15. def /~:(lhs: T)(implicit ev: EuclideanRing[T]): Bound[T]

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

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

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

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

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

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

  22. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  23. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  37. def toString(): String

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

  39. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any

Ungrouped