module IO::ByteFormat::BigEndian
Extended Modules
Defined in:
io/byte_format.crio/byte_format.cr
Class Method Summary
- .decode(type : Int8.class, io : IO)
- .decode(type : UInt64.class, io : IO)
- .decode(type : Int64.class, bytes : Bytes)
- .decode(type : Int64.class, io : IO)
- .decode(type : UInt32.class, bytes : Bytes)
- .decode(type : UInt32.class, io : IO)
- .decode(type : Int32.class, bytes : Bytes)
- .decode(type : Int32.class, io : IO)
- .decode(type : UInt16.class, bytes : Bytes)
- .decode(type : UInt16.class, io : IO)
- .decode(type : Int16.class, bytes : Bytes)
- .decode(type : Int16.class, io : IO)
- .decode(type : UInt8.class, bytes : Bytes)
- .decode(type : UInt8.class, io : IO)
- .decode(type : Int8.class, bytes : Bytes)
- .decode(type : UInt64.class, bytes : Bytes)
- .encode(int : UInt64, bytes : Bytes)
- .encode(int : UInt64, io : IO)
- .encode(int : Int64, bytes : Bytes)
- .encode(int : Int64, io : IO)
- .encode(int : UInt32, bytes : Bytes)
- .encode(int : UInt32, io : IO)
- .encode(int : Int32, bytes : Bytes)
- .encode(int : Int32, io : IO)
- .encode(int : UInt16, bytes : Bytes)
- .encode(int : UInt16, io : IO)
- .encode(int : Int16, bytes : Bytes)
- .encode(int : Int16, io : IO)
- .encode(int : UInt8, bytes : Bytes)
- .encode(int : UInt8, io : IO)
- .encode(int : Int8, bytes : Bytes)
- .encode(int : Int8, io : IO)