ByteConverterBigEndian

See breeze.io.ByteConverter, reads big endian.

class Object
trait Matchable
class Any

Value members

Concrete methods

def bytesToInt16(b0: Byte, b1: Byte): Short
def bytesToInt32(b0: Byte, b1: Byte, b2: Byte, b3: Byte): Int
def bytesToInt64(b0: Byte, b1: Byte, b2: Byte, b3: Byte, b4: Byte, b5: Byte, b6: Byte, b7: Byte): Long
def bytesToUInt16(b0: Byte, b1: Byte): Char
def bytesToUInt32(b0: Byte, b1: Byte, b2: Byte, b3: Byte): Long
def bytesToUInt64Shifted(b0: Byte, b1: Byte, b2: Byte, b3: Byte, b4: Byte, b5: Byte, b6: Byte, b7: Byte): Long
def int16ToBytes(value: Short): Array[Byte]
def int32ToBytes(value: Int): Array[Byte]
def int64ToBytes(value: Long): Array[Byte]
def uInt16ToBytes(value: Char): Array[Byte]
def uInt32ToBytes(value: Long): Array[Byte]
def uInt64ShiftedToBytes(value: Long): Array[Byte]
def uInt64ToBytes(value: ULong): Array[Byte]

Inherited methods

def byteToUInt8(b0: Byte): Short

Takes 1 Byte and returns a UInt8 (as Short)

Takes 1 Byte and returns a UInt8 (as Short)

Inherited from
ByteConverter
final def bytesToUInt64(b0: Byte, b1: Byte, b2: Byte, b3: Byte, b4: Byte, b5: Byte, b6: Byte, b7: Byte): ULong

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

Inherited from
ByteConverter
def uInt8ToByte(value: Short): Byte

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

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

Inherited from
ByteConverter