Packages

sealed trait IntOrUnbounded extends Product with Serializable

Represents a limit of an interval. It can be either an Int or an Unbounded value

Source
IntOrUnbounded.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IntOrUnbounded
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def +(other: ⇒ IntOrUnbounded): IntOrUnbounded

    Add another IntOrUnbounded to this value

  2. abstract def canEqual(that: Any): Boolean
    Definition Classes
    Equals
  3. abstract def getLimit: Option[Int]
  4. abstract def isUnbounded: Boolean

    true if this value is Unbounded

  5. abstract def minusOne: IntOrUnbounded
  6. abstract def productArity: Int
    Definition Classes
    Product
  7. abstract def productElement(n: Int): Any
    Definition Classes
    Product

Concrete Value Members

  1. def <=(x: Int): Boolean
  2. def >(other: IntOrUnbounded): Boolean
  3. def >=(x: Int): Boolean
  4. def hasLimit: Boolean
  5. implicit def intOrUnboundedShow: Show[IntOrUnbounded]
  6. def max(other: ⇒ IntOrUnbounded): IntOrUnbounded
  7. def min(other: ⇒ IntOrUnbounded): IntOrUnbounded
  8. def productIterator: Iterator[Any]
    Definition Classes
    Product
  9. def productPrefix: String
    Definition Classes
    Product
  10. def show: String
  11. def toString(): String
    Definition Classes
    IntOrUnbounded → AnyRef → Any