Packages

sealed abstract class UInt8 extends UnsignedNumber[UInt8]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UInt8
  2. UnsignedNumber
  3. Number
  4. BasicArithmetic
  5. Ordered
  6. Comparable
  7. NetworkElement
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type A = BigInt
    Definition Classes
    Number

Abstract Value Members

  1. abstract def underlying: A

    The underlying scala number used to to hold the number

    The underlying scala number used to to hold the number

    Attributes
    protected
    Definition Classes
    Number

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def &(num: UInt8): UInt8
    Definition Classes
    Number
  4. def *(num: UInt8): UInt8
    Definition Classes
    NumberBasicArithmetic
  5. def *(factor: BigInt): UInt8
    Definition Classes
    NumberBasicArithmetic
  6. def +(num: UInt8): UInt8
    Definition Classes
    NumberBasicArithmetic
  7. def -(num: UInt8): UInt8
    Definition Classes
    NumberBasicArithmetic
  8. def /(num: UInt8): UInt8
    Definition Classes
    Number
  9. def <(that: UInt8): Boolean
    Definition Classes
    Ordered
  10. def <<(num: UInt8): UInt8
    Definition Classes
    Number
  11. def <<(num: Int): UInt8
    Definition Classes
    Number
  12. def <=(that: UInt8): Boolean
    Definition Classes
    Ordered
  13. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def >(that: UInt8): Boolean
    Definition Classes
    Ordered
  15. def >=(that: UInt8): Boolean
    Definition Classes
    Ordered
  16. def >>(num: UInt8): UInt8
    Definition Classes
    Number
  17. def >>(num: Int): UInt8
    Definition Classes
    Number
  18. def addSafe(n: UInt8): Try[UInt8]

    Some classes have restrictions on upper bounds for it's underlying value.

    Some classes have restrictions on upper bounds for it's underlying value. This might cause the + operator to throw. This method wraps it in a Try block.

    Definition Classes
    BasicArithmetic
  19. val andMask: BigInt

    This is used to determine the valid amount of bytes in a number for instance a UInt8 has an andMask of 0xff a UInt32 has an andMask of 0xffffffff

    This is used to determine the valid amount of bytes in a number for instance a UInt8 has an andMask of 0xff a UInt32 has an andMask of 0xffffffff

    Definition Classes
    UInt8Number
  20. def apply: (A) => UInt8

    Factory function to create the underlying T, for instance a UInt32.

    Factory function to create the underlying T, for instance a UInt32. This method must check if the parameter is in the required range.

    Definition Classes
    UInt8Number
  21. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  22. def byteSize: Long

    The size of the NetworkElement in bytes.

    The size of the NetworkElement in bytes.

    Definition Classes
    NetworkElement
  23. val bytes: ByteVector

    The byte representation of the NetworkElement

    The byte representation of the NetworkElement

    Definition Classes
    UInt8NetworkElement
  24. def bytesLE: ByteVector

    The byte representation of the NetworkElement in little endian

    The byte representation of the NetworkElement in little endian

    Definition Classes
    NetworkElement
  25. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  26. def compare(num: UInt8): Int
    Definition Classes
    Number → Ordered
  27. def compareTo(that: UInt8): Int
    Definition Classes
    Ordered → Comparable
  28. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  30. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  31. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  32. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  33. def hex: String

    The hexadecimal representation of the NetworkElement

    The hexadecimal representation of the NetworkElement

    Definition Classes
    NetworkElement
  34. def hexLE: String

    The hexadecimal representation of the NetworkElement in little endian

    The hexadecimal representation of the NetworkElement in little endian

    Definition Classes
    NetworkElement
  35. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  36. def multiplySafe(factor: UInt8): Try[UInt8]

    Some classes have restrictions on upper bounds for it's underlying value.

    Some classes have restrictions on upper bounds for it's underlying value. This might cause the * operator to throw. This method wraps it in a Try block.

    Definition Classes
    BasicArithmetic
  37. def multiplySafe(factor: BigInt): Try[UInt8]

    Some classes have restrictions on upper bounds for it's underlying value.

    Some classes have restrictions on upper bounds for it's underlying value. This might cause the * operator to throw. This method wraps it in a Try block.

    Definition Classes
    BasicArithmetic
  38. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  39. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  40. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  41. def subtractSafe(n: UInt8): Try[UInt8]

    Some classes have restrictions on lower bounds for it's underlying value.

    Some classes have restrictions on lower bounds for it's underlying value. This might cause the - operator to throw. This method wraps it in a Try block.

    Definition Classes
    BasicArithmetic
  42. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  43. def toBigInt: BigInt
    Definition Classes
    Number
  44. def toInt: Int
    Definition Classes
    Number
  45. def toLong: Long
    Definition Classes
    Number
  46. def toString(): String
    Definition Classes
    AnyRef → Any
  47. def toUInt5: UInt5
  48. def truncatedBytes: ByteVector
    Definition Classes
    Number
  49. def unary_-: UInt8
    Definition Classes
    Number
  50. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  51. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  52. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  53. def |(num: UInt8): UInt8
    Definition Classes
    Number

Inherited from UnsignedNumber[UInt8]

Inherited from Number[UInt8]

Inherited from BasicArithmetic[UInt8]

Inherited from Ordered[UInt8]

Inherited from Comparable[UInt8]

Inherited from NetworkElement

Inherited from AnyRef

Inherited from Any

Ungrouped