rcdata.bin

A serializer and pull parser for a custom binary format. The format is meant to be simple, so it might lack features. It does not store field names or type information.

Members

Enums

isRCBin
eponymoustemplate isRCBin(T)

Check if the given type is an RCBin struct.

Functions

rcbinParser
RCBin!(T, true) rcbinParser(T range)

Make an rcbin parser.

rcbinSerializer
RCBin!(T, false) rcbinSerializer(T range)

Make an rcbin serializer.

Structs

RCBin
struct RCBin(T, bool isParser)

Struct for parsing and serializing into binary.

Meta