struct fileOutRange
{
File f;
void put(ubyte[] a)
{
f.rawWrite(a);
}
}But was just wondering if there was a real output range for files somewhere in phobos that I just cant seem to find.
struct fileOutRange
{
File f;
void put(ubyte[] a)
{
f.rawWrite(a);
}
}But was just wondering if there was a real output range for files somewhere in phobos that I just cant seem to find.