D issues are now tracked on GitHub. This Bugzilla instance remains as a read-only archive.
Issue 14867 - DDoc: generate docs for all alias this members by including the API for their types
Summary: DDoc: generate docs for all alias this members by including the API for their...
Status: RESOLVED DUPLICATE of issue 13069
Alias: None
Product: D
Classification: Unclassified
Component: dmd (show other issues)
Version: D2
Hardware: All All
: P1 enhancement
Assignee: No Owner
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-08-04 16:24 UTC by ZombineDev
Modified: 2020-03-21 03:56 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description ZombineDev 2015-08-04 16:24:46 UTC

    
Comment 1 ZombineDev 2015-08-04 16:30:08 UTC
Example:

struct JsonValue
{
    alias JSON = Algebraic!(
        typeof(null),
        bool,
        double,
        long,
        BigInt,
        string,
        JSONValue[],
        JSONValue[string]
    );

    JSON storage;

    // Should work like ddoc-ed unittests:
    ///
    alias storage this;
}
Comment 2 basile-z 2019-11-03 21:12:38 UTC

*** This issue has been marked as a duplicate of issue 13069 ***