Cerealed v0.6.1: even less boilerplate for binary serialization
Atila Neves via Digitalmars-d-announce
digitalmars-d-announce at puremagic.com
Mon Aug 3 04:45:51 PDT 2015
On Monday, 3 August 2015 at 10:37:05 UTC, Dmitry Olshansky wrote:
> On 03-Aug-2015 12:27, Dicebot wrote:
>> On Monday, 3 August 2015 at 09:21:50 UTC, Atila Neves wrote:
>>>[...]
>>
>> This deserialization will be identical to casting like this,
>> right? (Not
>> trying to diminish your work, just making sure I get semantics
>> :))
>>
>> align(1)
>> struct UdpPacket
>> {
>> align(1)
>> static struct Header {
>> ushort srcPort;
>> ushort dstPort;
>> ushort length;
>> ushort checksum;
>> }
>>
>> Header header;
>> ubyte[0] data;
>> }
>>
>> // ...
>>
>> auto packet = cast(UdpPacket*) raw_data.ptr;
>
> Plus/minus network byte order.
Oh yeah, and that. Cerealed always does network order.
Atila
More information about the Digitalmars-d-announce
mailing list