cgta.oscala.util

BinaryHelp

object BinaryHelp

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BinaryHelp
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class ByteArrayInStreamReader extends InStreamReader

  2. class ByteArrayOutStreamWriter extends OutStreamWriter

  3. trait InStreamReader extends AnyRef

  4. trait OutStreamWriter extends AnyRef

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. object DeltaArray

  7. object InStream

  8. object OutStream

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def bigEndian(value: Long): Array[Byte]

  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def decodeZigZag64(n: Long): Long

    Decode a ZigZag-encoded 64-bit value.

    Decode a ZigZag-encoded 64-bit value. ZigZag encodes signed integers into values that can be efficiently encoded with varint. (Otherwise, negative values must be sign-extended to 64 bits to be varint encoded, thus always taking 10 bytes on the wire.)

    n

    An unsigned 64-bit integer, stored in a signed int because Java has no explicit unsigned support.

    returns

    A signed 64-bit integer.

  13. def encodeZigZag64(n: Long): Long

    Encode a ZigZag-encoded 64-bit value.

    Encode a ZigZag-encoded 64-bit value. ZigZag encodes signed integers into values that can be efficiently encoded with varint. (Otherwise, negative values must be sign-extended to 64 bits to be varint encoded, thus always taking 10 bytes on the wire.)

    n

    A signed 64-bit integer.

    returns

    An unsigned 64-bit integer, stored in a signed int because Java has no explicit unsigned support.

  14. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

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

    Definition Classes
    Any
  20. def littleEndian(value: Long): Array[Byte]

  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. final def notify(): Unit

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

    Definition Classes
    AnyRef
  24. def popCnt32(n: Int): Int

  25. def readFromBytesBigEndian32(startIndex: Int, data: Array[Byte]): Int

    Reads a big-endian 32-bit integer.

  26. def readFromBytesBigEndian64(startIndex: Int, data: Array[Byte]): Long

    Reads a big-endian 64-bit integer (aka long)

  27. def swapEndian16(value: Short): Short

  28. def swapEndian32(value: Int): Int

  29. def swapEndian64(value: Long): Long

  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  31. def toString(): String

    Definition Classes
    AnyRef → Any
  32. def trailingZeros(n: Long): Int

  33. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def writeToBytesBigEndian32(startIndex: Int, value: Int, data: Array[Byte]): Unit

    Writes a big-endian 32-bit integer.

  37. def writeToBytesBigEndian64(startIndex: Int, value: Long, data: Array[Byte]): Unit

    Write a big-endian 64-bit integr (aka Long)

Inherited from AnyRef

Inherited from Any

Ungrouped