Packages

object ValueBound

Companion object for open/closed bounds, used to construct intervals from a set of bounds.

In the comments, we write

- [v, (v or ?v when the bound is interpreted as a lower bound, - v], v), v? when the bound is interpreted as an upper bound.

The symbols [], (), ? correspond to closed, open or unknown bounds.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ValueBound
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. def unapply[A](b: Bound[A]): Option[A]
  18. def union2[A](v1: ValueBound[A], v2: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval containing the two given bounds.

    Returns the interval containing the two given bounds.

    Annotations
    @inline()
  19. def union3[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds.

    Annotations
    @inline()
  20. def union3_1approx2[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds.

    Assumption: v1.a === v2.a.

    Annotations
    @inline()
  21. def union3_1approx2_2approx3[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds.

    Assumption: v1.a === v2.a === v3.a.

    Annotations
    @inline()
  22. def union3_1approx2_2less3[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds.

    Assumption: v1.a === v2.a < v3.a.

    Annotations
    @inline()
  23. def union3_1less2[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds.

    Assumption: v1.a < v2.a.

    Annotations
    @inline()
  24. def union3_1less2_2approx3[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds.

    Assumption: v1.a < v2.a === v3.a.

    Annotations
    @inline()
  25. def union4[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A], v4: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds.

    Annotations
    @inline()
  26. def union4_1approx2[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A], v4: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds.

    Assumption: v1.a === v2.a.

    Annotations
    @inline()
  27. def union4_1approx2_2approx3[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A], v4: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds.

    Assumption: v1.a === v2.a == v3.a.

    Annotations
    @inline()
  28. def union4_1approx2_2approx3_3less4[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A], v4: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds.

    Assumption: v1.a === v2.a === v3.a < v4.a.

    Annotations
    @inline()
  29. def union4_1approx2_2less3[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A], v4: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds.

    Assumption: v1.a === v2.a < v3.a.

    Annotations
    @inline()
  30. def union4_1approx2_2less3_3approx4[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A], v4: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds.

    Assumption: v1.a === v2.a < v3.a === v4.a.

    Annotations
    @inline()
  31. def union4_1less2[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A], v4: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds. * Assumption: v1.a < v2.a.

    Annotations
    @inline()
  32. def union4_1less2_1less3[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A], v4: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds.

    Assumption: v1.a < v2.a and v1.a < v3.a (i.e. v1 is the minimum of all).

    Annotations
    @inline()
  33. def union4_1less2_2approx3[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A], v4: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds.

    Assumption: v1.a < v2.a === v3.a.

    Annotations
    @inline()
  34. def union4_1less2_2approx3_3approx4[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A], v4: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds.

    Assumption: v1.a < v2.a === v3.a === v4.a.

    Annotations
    @inline()
  35. def union4_1less3_2less3[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A], v4: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds.

    Assumption: v1.a < v3.a and v2.a < v3.a (i.e. v3 is the maximum of all).

    Annotations
    @inline()
  36. def union4_1less3_2less3_3approx4[A](v1: ValueBound[A], v2: ValueBound[A], v3: ValueBound[A], v4: ValueBound[A])(implicit arg0: Order[A]): Interval[A]

    Returns the interval which contains all the given bounds.

    Returns the interval which contains all the given bounds.

    Assumption: v1.a < v3.a === v4.a and v2.a < v3.a === v4.a.

    Annotations
    @inline()
  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