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: 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. object DeltaArray

  5. object InStream

  6. object OutStream

  7. final def asInstanceOf[T0]: T0

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

  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. 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.

  11. 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.

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

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

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

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

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

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

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

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

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

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

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

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

    Reads a big-endian 32-bit integer.

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

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

  25. def swapEndian16(value: Short): Short

  26. def swapEndian32(value: Int): Int

  27. def swapEndian64(value: Long): Long

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

    Definition Classes
    AnyRef
  29. def toString(): String

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

  31. final def wait(): Unit

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

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

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

    Writes a big-endian 32-bit integer.

  35. 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