D for the Win
bearophile via Digitalmars-d-announce
digitalmars-d-announce at puremagic.com
Wed Aug 20 14:56:20 PDT 2014
Andrei:
> http://tomerfiliba.com/blog/dlang/
> struct PascalString {
> Field!ubyte length;
Also see if UDAs plus compile-time introspection is helpful.
> auto stream = cast(ubyte[])"\x05helloXXXX".dup;
Perhaps this is enough, and avoids one allocation:
immutable stream = "\x05helloXXXX".representation;
Bye,
bearophile
More information about the Digitalmars-d-announce
mailing list