И
Size: a a a
И
OB
OB
И
auto rq = Request();вот по идее так можно (ну только post подставить вместо гет
rq.useStreaming = true;
auto stream = rq.get("http://httpbin.org.get").receiveAsRange();
И
И
И
И
И
И
OB
struct R
{
typeof(stream.joiner) val;
@property char front() { return cast(char)val.front; }
@property R save() { return this; }
@property bool empty() { return val.empty; }
void popFront() { val.popFront; }
}
auto r = R(stream.joiner);
return parseJson(r);
И