code formatting issue

Alexandr Druzhinin drug2004 at bk.ru
Wed Oct 2 08:41:12 PDT 2013


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? :)


More information about the Digitalmars-d-learn mailing list