binary.unpack

Members

Functions

unpack
auto unpack(auto ref Range data)

Decodes binary data.

unpack
auto unpack(File file)

Decodes binary data from file.

unpackTo
void unpackTo(auto ref Range range, ref V values)

Decodes binary data.

unpackTo
void unpackTo(File file, ref V values)

Decodes binary data from file.

unpackTo
void unpackTo(auto ref Range range, ref V values)

Decodes binary data.

unpackTo
void unpackTo(File file, ref V values)

Decodes binary data from file.

unpackTo
void unpackTo(ref BinaryReader!Range reader, ref V values)

Decodes binary data.

unpacker
auto unpacker(auto ref R range)

Returns an instance of unpacker of T.

unpacker
auto unpacker(File file)

Returns an instance of unpacker of T.

Structs

Unpacker
struct Unpacker(string format, ByteOrder byteOrder = ByteOrder.Native, R)

Unpacker range.

Meta