scala.math.Numeric

ByteIsIntegral

trait ByteIsIntegral extends Integral[Byte]

known subclasses: ByteIsIntegral
Go to: companion

Inherits

  1. Integral
  2. Numeric
  3. Ordering
  4. PartialOrdering
  5. Equiv
  6. Comparator
  7. AnyRef
  8. Any

Type Members

  1. class IntegralOps extends Ops

  2. class Ops extends AnyRef

Value Members

  1. def abs(x: Byte): Byte

  2. def compare(x: Byte, y: Byte): Int

    Returns a negative integer iff x comes before y in the ordering, returns 0 iff x is the same in the ordering as y, and returns a positive number iff x comes after y in the ordering

  3. def equals(arg0: Any): Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence

  4. def equiv(x: Byte, y: Byte): Boolean

    Returns true iff x is equivalent to y in the ordering

  5. def fromInt(x: Int): Byte

  6. def gt(x: Byte, y: Byte): Boolean

    Returns true iff y comes before x in the ordering and is not the same as x

  7. def gteq(x: Byte, y: Byte): Boolean

    Returns true iff y comes before x in the ordering

  8. def hashCode(): Int

    Returns a hash code value for the object

  9. def lt(x: Byte, y: Byte): Boolean

    Returns true iff x comes before y in the ordering and is not the same as y

  10. def lteq(x: Byte, y: Byte): Boolean

    Returns true iff x comes before y in the ordering

  11. def max(x: Byte, y: Byte): Byte

    Returns the argument which comes later in the ordering

  12. def min(x: Byte, y: Byte): Byte

    Returns the argument which comes earlier in the ordering

  13. def minus(x: Byte, y: Byte): Byte

  14. def mkNumericOps(lhs: Byte): IntegralOps

  15. def mkOrderingOps(lhs: Byte): Ops

  16. def negate(x: Byte): Byte

  17. def on[U](f: (U) ⇒ Byte): Ordering[U]

    Given a function U => T, creates Ordering[U]

  18. def one: Byte

  19. def plus(x: Byte, y: Byte): Byte

  20. def quot(x: Byte, y: Byte): Byte

  21. def rem(x: Byte, y: Byte): Byte

  22. def reverse: Ordering[Byte]

  23. def signum(x: Byte): Int

  24. def times(x: Byte, y: Byte): Byte

  25. def toDouble(x: Byte): Double

  26. def toFloat(x: Byte): Float

  27. def toInt(x: Byte): Int

  28. def toLong(x: Byte): Long

  29. def toString(): String

    Returns a string representation of the object

  30. def tryCompare(x: Byte, y: Byte): Some[Int]

    An Ordering is defined at all x and y

  31. def zero: Byte