Re: Why is List(T) documented in std.concurrency?

2012-04-25 Thread Jonathan M Davis
On Wednesday, April 25, 2012 17:31:29 Ali Çehreli wrote: > On 04/25/2012 02:15 PM, Jonathan M Davis wrote: > > On Wednesday, April 25, 2012 22:01:45 Mirko Pilger wrote: > >>> Since there's only one *, it shouldn't show up in the docs, even if it's > >>> public. > >> > >> "If there is no documentat

Re: Why is List(T) documented in std.concurrency?

2012-04-25 Thread Ali Çehreli
On 04/25/2012 02:15 PM, Jonathan M Davis wrote: On Wednesday, April 25, 2012 22:01:45 Mirko Pilger wrote: Since there's only one *, it shouldn't show up in the docs, even if it's public. "If there is no documentation comment for a declaration, that declaration may not appear in the output. To

Re: Why is List(T) documented in std.concurrency?

2012-04-25 Thread Jonathan M Davis
On Wednesday, April 25, 2012 22:01:45 Mirko Pilger wrote: > > Since there's only one *, it shouldn't show up in the docs, even if it's > > public. > > "If there is no documentation comment for a declaration, that > declaration may not appear in the output. To ensure it does appear in > the output,

Re: Why is List(T) documented in std.concurrency?

2012-04-25 Thread Mirko Pilger
Since there's only one *, it shouldn't show up in the docs, even if it's public. "If there is no documentation comment for a declaration, that declaration may not appear in the output. To ensure it does appear in the output, put an empty declaration comment for it." http://dlang.org/ddoc.htm

Re: Why is List(T) documented in std.concurrency?

2012-04-25 Thread Jonathan M Davis
On Wednesday, April 25, 2012 21:00:33 Alex Rønne Petersen wrote: > Hi, > > http://dlang.org/phobos/std_concurrency.html > > Why does List(T) appear? Isn't it private? It's probably due to http://d.puremagic.com/issues/show_bug.cgi?id=2775 However, to make things weirder, it _doesn't_ have ddoc

Why is List(T) documented in std.concurrency?

2012-04-25 Thread Alex Rønne Petersen
Hi, http://dlang.org/phobos/std_concurrency.html Why does List(T) appear? Isn't it private? -- - Alex