Packages

object Interval extends Serializable

Linear Supertypes
Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Interval
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type ExLowExUp[T] = Intersection[ExclusiveLower, ExclusiveUpper, T]
  2. type ExLowInUp[T] = Intersection[ExclusiveLower, InclusiveUpper, T]
  3. type GenIntersection[T] = Intersection[Lower, Upper, T]
  4. type InLowExUp[T] = Intersection[InclusiveLower, ExclusiveUpper, T]
  5. type InLowInUp[T] = Intersection[InclusiveLower, InclusiveUpper, T]
  6. implicit final class IntervalMethods[T] extends AnyVal

    This is here for binary compatibility reasons.

    This is here for binary compatibility reasons. These methods should be moved to Interval, which should also be an abstract class for better binary compatibility at the next incompatible change

  7. sealed abstract class MaybeEmpty[T, NonEmpty[t] <: Interval[t]] extends AnyRef

    Class that only exists so that leftClosedRightOpen and leftOpenRightClosed can retain the type information of the returned interval.

    Class that only exists so that leftClosedRightOpen and leftOpenRightClosed can retain the type information of the returned interval. The compiler doesn't know anything about ordering, so without MaybeEmpty the only valid return type is Interval[T].

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[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def closed[T](lower: T, upper: T)(implicit arg0: Ordering[T]): MaybeEmpty[T, InLowInUp]
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. implicit def fromMaybeEmpty[T, NonEmpty[t] <: Interval[t]](me: MaybeEmpty[T, NonEmpty]): Interval[T]
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def leftClosedRightOpen[T](lower: T, upper: T)(implicit arg0: Ordering[T]): MaybeEmpty[T, InLowExUp]
  15. def leftOpenRightClosed[T](lower: T, upper: T)(implicit arg0: Ordering[T]): MaybeEmpty[T, ExLowInUp]
  16. implicit def monoid[T](implicit arg0: Ordering[T]): Monoid[Interval[T]]
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. def open[T](lower: T, upper: T)(implicit arg0: Ordering[T]): MaybeEmpty[T, ExLowExUp]
  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  26. object MaybeEmpty

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped