digitalmars.D.bugs - [Issue 3829] New: ddoc of mixed in functions
- d-bugmail puremagic.com (46/46) Feb 18 2010 http://d.puremagic.com/issues/show_bug.cgi?id=3829
- d-bugmail puremagic.com (10/10) Feb 18 2010 http://d.puremagic.com/issues/show_bug.cgi?id=3829
- d-bugmail puremagic.com (7/8) Feb 18 2010 http://d.puremagic.com/issues/show_bug.cgi?id=3829
- d-bugmail puremagic.com (14/14) Feb 18 2010 http://d.puremagic.com/issues/show_bug.cgi?id=3829
http://d.puremagic.com/issues/show_bug.cgi?id=3829
Summary: ddoc of mixed in functions
Product: D
Version: 2.040
Platform: Other
OS/Version: Windows
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody puremagic.com
ReportedBy: bearophile_hugs eml.cc
This code:
/// this is a ddoc comment
void foo(int i) { printf("%d\n", i); }
/// ditto
void foo(uint i) { printf("%d\n", i); }
/// ditto
void foo(short i) { printf("%d\n", i); }
Generates this correct HTML documentation:
void foo(int i);
void foo(uint i);
void foo(short i);
this is a ddoc comment
Then I have tried to generate those similar functions with a mixin(), but then
I can't find a way to make ddoc list them (into the generated Html) grouped:
/// this is a ddoc comment
void foo(int i) { printf("int) %d\n", i); }
template Gen(string type) {
const Gen = `
/// ditto
void foo(` ~ type ~ ` i) { printf("` ~ type ~ `) %d\n", i); }`;
}
/// ditto
mixin(Gen!("uint"));
/// ditto
mixin(Gen!("short"));
void main() {
foo(10);
foo(cast(uint)20);
foo(cast(short)30);
}
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Feb 18 2010
http://d.puremagic.com/issues/show_bug.cgi?id=3829
Alexey Ivanov <aifgi90 gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |aifgi90 gmail.com
---
See: http://d.puremagic.com/issues/show_bug.cgi?id=2420
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Feb 18 2010
http://d.puremagic.com/issues/show_bug.cgi?id=3829See: http://d.puremagic.com/issues/show_bug.cgi?id=2420Yes, thank you, this seems a dupe. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Feb 18 2010
http://d.puremagic.com/issues/show_bug.cgi?id=3829
Brad Roberts <braddr puremagic.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
CC| |braddr puremagic.com
Resolution| |DUPLICATE
---
If you find dupes, please mark them as such.. generally preferring to mark the
newest one as a dup of the oldest one.
*** This issue has been marked as a duplicate of issue 2420 ***
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Feb 18 2010









d-bugmail puremagic.com 