scala.math.Numeric

ShortIsIntegral

implicit object ShortIsIntegral extends ShortIsIntegral with ShortOrdering

Linear Supertypes
Content Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ShortIsIntegral
  2. ShortOrdering
  3. ShortIsIntegral
  4. Integral
  5. Numeric
  6. Ordering
  7. PartialOrdering
  8. Equiv
  9. Serializable
  10. Serializable
  11. Comparator
  12. AnyRef
  13. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class IntegralOps extends Ops

    Definition Classes
    Integral
  2. class Ops extends AnyRef

    Definition Classes
    Numeric

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. def abs(x: Short): Short

    Definition Classes
    Numeric
  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def compare(x: Short, y: Short): Int

    Returns an integer whose sign communicates how x compares to y.

    Returns an integer whose sign communicates how x compares to y.

    The result sign has the following meaning:

    • negative if x < y
    • positive if x > y
    • zero otherwise (if x == y)
    Definition Classes
    ShortOrderingOrdering → Comparator
  8. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  10. def equiv(x: Short, y: Short): Boolean

    Return true if x == y in the ordering.

    Return true if x == y in the ordering.

    Definition Classes
    OrderingPartialOrderingEquiv
  11. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def fromInt(x: Int): Short

    Definition Classes
    ShortIsIntegralNumeric
  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. def gt(x: Short, y: Short): Boolean

    Return true if x > y in the ordering.

    Return true if x > y in the ordering.

    Definition Classes
    OrderingPartialOrdering
  15. def gteq(x: Short, y: Short): Boolean

    Return true if x >= y in the ordering.

    Return true if x >= y in the ordering.

    Definition Classes
    OrderingPartialOrdering
  16. def hashCode(): Int

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

    Definition Classes
    Any
  18. def lt(x: Short, y: Short): Boolean

    Return true if x < y in the ordering.

    Return true if x < y in the ordering.

    Definition Classes
    OrderingPartialOrdering
  19. def lteq(x: Short, y: Short): Boolean

    Return true if x <= y in the ordering.

    Return true if x <= y in the ordering.

    Definition Classes
    OrderingPartialOrdering
  20. def max(x: Short, y: Short): Short

    Return x if x >= y, otherwise y.

    Return x if x >= y, otherwise y.

    Definition Classes
    Ordering
  21. def min(x: Short, y: Short): Short

    Return x if x <= y, otherwise y.

    Return x if x <= y, otherwise y.

    Definition Classes
    Ordering
  22. def minus(x: Short, y: Short): Short

    Definition Classes
    ShortIsIntegralNumeric
  23. implicit def mkNumericOps(lhs: Short): IntegralOps

    Definition Classes
    IntegralNumeric
  24. implicit def mkOrderingOps(lhs: Short): ShortIsIntegral.Ops

    This implicit method augments T with the comparison operators defined in scala.math.Ordering.Ops.

    This implicit method augments T with the comparison operators defined in scala.math.Ordering.Ops.

    Definition Classes
    Ordering
  25. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  26. def negate(x: Short): Short

    Definition Classes
    ShortIsIntegralNumeric
  27. final def notify(): Unit

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

    Definition Classes
    AnyRef
  29. def on[U](f: (U) ⇒ Short): Ordering[U]

    Given f, a function from U into T, creates an Ordering[U] whose compare function is equivalent to:

    Given f, a function from U into T, creates an Ordering[U] whose compare function is equivalent to:

    def compare(x:U, y:U) = Ordering[T].compare(f(x), f(y))
    Definition Classes
    Ordering
  30. def one: Short

    Definition Classes
    Numeric
  31. def plus(x: Short, y: Short): Short

    Definition Classes
    ShortIsIntegralNumeric
  32. def quot(x: Short, y: Short): Short

    Definition Classes
    ShortIsIntegralIntegral
  33. def rem(x: Short, y: Short): Short

    Definition Classes
    ShortIsIntegralIntegral
  34. def reverse: Ordering[Short]

    Return the opposite ordering of this one.

    Return the opposite ordering of this one.

    Definition Classes
    OrderingPartialOrdering
  35. def signum(x: Short): Int

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

    Definition Classes
    AnyRef
  37. def times(x: Short, y: Short): Short

    Definition Classes
    ShortIsIntegralNumeric
  38. def toDouble(x: Short): Double

    Definition Classes
    ShortIsIntegralNumeric
  39. def toFloat(x: Short): Float

    Definition Classes
    ShortIsIntegralNumeric
  40. def toInt(x: Short): Int

    Definition Classes
    ShortIsIntegralNumeric
  41. def toLong(x: Short): Long

    Definition Classes
    ShortIsIntegralNumeric
  42. def toString(): String

    Definition Classes
    AnyRef → Any
  43. def tryCompare(x: Short, y: Short): Some[Int]

    Returns whether a comparison between x and y is defined, and if so the result of compare(x, y).

    Returns whether a comparison between x and y is defined, and if so the result of compare(x, y).

    Definition Classes
    OrderingPartialOrdering
  44. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. def zero: Short

    Definition Classes
    Numeric

Inherited from ShortOrdering

Inherited from ShortIsIntegral

Inherited from Integral[Short]

Inherited from Numeric[Short]

Inherited from Ordering[Short]

Inherited from PartialOrdering[Short]

Inherited from Equiv[Short]

Inherited from Serializable

Inherited from java.io.Serializable

Inherited from Comparator[Short]

Inherited from AnyRef

Inherited from Any

Ungrouped