Object

breeze.io

ByteConverterLittleEndian

Related Doc: package io

Permalink

object ByteConverterLittleEndian extends ByteConverter

See breeze.io.ByteConverter, reads little endian.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ByteConverterLittleEndian
  2. ByteConverter
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def byteToUInt8(b0: Byte): Short

    Permalink

    Takes 1 Byte and returns a UInt8 (as Short)

    Takes 1 Byte and returns a UInt8 (as Short)

    Definition Classes
    ByteConverter
  6. def bytesToInt16(b0: Byte, b1: Byte): Short

    Permalink

    Takes 2 Bytes and returns an Int16 (Short)

    Takes 2 Bytes and returns an Int16 (Short)

    Definition Classes
    ByteConverterLittleEndianByteConverter
  7. def bytesToInt32(b0: Byte, b1: Byte, b2: Byte, b3: Byte): Int

    Permalink

    Takes 4 Bytes and returns a UInt32 (Int)

    Takes 4 Bytes and returns a UInt32 (Int)

    Definition Classes
    ByteConverterLittleEndianByteConverter
  8. def bytesToInt64(b0: Byte, b1: Byte, b2: Byte, b3: Byte, b4: Byte, b5: Byte, b6: Byte, b7: Byte): Long

    Permalink

    Takes 8 Bytes and returns a Int64 (Long)

    Takes 8 Bytes and returns a Int64 (Long)

    Definition Classes
    ByteConverterLittleEndianByteConverter
  9. def bytesToUInt16(b0: Byte, b1: Byte): Char

    Permalink

    Takes 2 Bytes and returns a UInt16 (as Char)

    Takes 2 Bytes and returns a UInt16 (as Char)

    Definition Classes
    ByteConverterLittleEndianByteConverter
  10. def bytesToUInt32(b0: Byte, b1: Byte, b2: Byte, b3: Byte): Long

    Permalink

    Takes 4 Bytes and returns a UInt32 (as Long)

    Takes 4 Bytes and returns a UInt32 (as Long)

    Definition Classes
    ByteConverterLittleEndianByteConverter
  11. final def bytesToUInt64(b0: Byte, b1: Byte, b2: Byte, b3: Byte, b4: Byte, b5: Byte, b6: Byte, b7: Byte): ULong

    Permalink

    Takes 8 Bytes and returns a UInt64 (as ULong), throwing an error if it overflows Long, which is Int64

    Takes 8 Bytes and returns a UInt64 (as ULong), throwing an error if it overflows Long, which is Int64

    Definition Classes
    ByteConverter
  12. def bytesToUInt64Shifted(b0: Byte, b1: Byte, b2: Byte, b3: Byte, b4: Byte, b5: Byte, b6: Byte, b7: Byte): Long

    Permalink

    Takes 8 Bytes and returns a UInt64 shifted down to the range of Int64 (Long).

    Takes 8 Bytes and returns a UInt64 shifted down to the range of Int64 (Long). The shifted number range runs from -263 to 263-1, so that UInt64 can be represented in the JVM long (Int64). Addition and subtraction are valid with these long representations, multiplication and division, naturally, are not.

    Definition Classes
    ByteConverterLittleEndianByteConverter
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  14. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  17. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  18. def int16ToBytes(value: Short): Array[Byte]

    Permalink

    Takes an Int16 (Short), and returns an array of 2 bytes

    Takes an Int16 (Short), and returns an array of 2 bytes

    Definition Classes
    ByteConverterLittleEndianByteConverter
  19. def int32ToBytes(value: Int): Array[Byte]

    Permalink

    Takes an Int32 (Int), and returns an array of 4 bytes

    Takes an Int32 (Int), and returns an array of 4 bytes

    Definition Classes
    ByteConverterLittleEndianByteConverter
  20. def int64ToBytes(value: Long): Array[Byte]

    Permalink

    Takes an Int64 (Long), and returns an array of 8 bytes

    Takes an Int64 (Long), and returns an array of 8 bytes

    Definition Classes
    ByteConverterLittleEndianByteConverter
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  24. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  27. def uInt16ToBytes(value: Char): Array[Byte]

    Permalink

    Takes a UInt16 (Char), and returns an array of 2 bytes

    Takes a UInt16 (Char), and returns an array of 2 bytes

    Definition Classes
    ByteConverterLittleEndianByteConverter
  28. def uInt32ToBytes(value: Long): Array[Byte]

    Permalink

    Takes a UInt32 (as Long), and returns an array of 4 bytes

    Takes a UInt32 (as Long), and returns an array of 4 bytes

    Definition Classes
    ByteConverterLittleEndianByteConverter
  29. def uInt64ShiftedToBytes(value: Long): Array[Byte]

    Permalink

    Takes an Int64 (Long), and returns an array of 8 bytes, shifted up to a UInt64.

    Takes an Int64 (Long), and returns an array of 8 bytes, shifted up to a UInt64. See breeze.io.ByteConverter.bytesToUInt64Shifted()

    Definition Classes
    ByteConverterLittleEndianByteConverter
  30. def uInt64ToBytes(value: ULong): Array[Byte]

    Permalink

    Takes a UInt64 (as ULong), and returns an array of 8 bytes

    Takes a UInt64 (as ULong), and returns an array of 8 bytes

    Definition Classes
    ByteConverterLittleEndianByteConverter
  31. def uInt8ToByte(value: Short): Byte

    Permalink

    Takes an UInt8 (as Sort), and returns a bytes

    Takes an UInt8 (as Sort), and returns a bytes

    Definition Classes
    ByteConverter
  32. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from ByteConverter

Inherited from AnyRef

Inherited from Any

Ungrouped