I'm curious what is the best way to code like this: // request_id zoom x y path url auto msg = receiveOnly!(size_t, zoom, uint, uint, string, string)();
or like this
auto msg = receiveOnly!(
typeof(request_id),
typeof(zoom),
typeof(x),
typeof(y),
typeof(path),
typeof(url)
)();
Or may be I'm worrying about nonsense and better I'd start thinking
about more useful things? :)
