On Fri, 06 Feb 2015 17:09:28 +0000, Charles wrote: > readString(toBytes!string("test"),0,4).writeln;
if you'll take a look into druntime sources, you'll find that string is just an alias to `immutable(char)[]`. so you actually doing thing: readString(toBytes!(immutable(char)[])("test"),0,4).writeln; i bet that this is not what you meant. ;-)
signature.asc
Description: PGP signature