Re: Explicit ordering with std.format

2009-12-05 Thread bearophile
Tomek Sowiñski: How do I achieve this with std.format? I think you can't (and I haven't had the need to do it). Bye, bearophile

Re: Explicit ordering with std.format

2009-12-05 Thread Ary Borenszweig
bearophile wrote: Tomek Sowiñski: How do I achieve this with std.format? I think you can't (and I haven't had the need to do it). It's somtimes needed with I18N code.

Re: Explicit ordering with std.format

2009-12-05 Thread Joel Christensen
Tomek Sowiński wrote: An extract from java.util.Formatter docs: // Explicit argument indices may be used to re-order output. formatter.format(%4$2s %3$2s %2$2s %1$2s, a, b, c, d) // - d c b a How do I achieve this with std.format? The ddocs only say that variadic arguments are consumed in

Explicit ordering with std.format

2009-12-04 Thread Tomek Sowiński
An extract from java.util.Formatter docs: // Explicit argument indices may be used to re-order output. formatter.format(%4$2s %3$2s %2$2s %1$2s, a, b, c, d) // - d c b a How do I achieve this with std.format? The ddocs only say that variadic arguments are consumed in order. Any way to