Thread overview
[Issue 14867] DDoc: generate docs for all alias this members by including the API for their types
[Issue 14867] DDoc: generate docs for alias this members by including the API of the member
Aug 04, 2015
ZombineDev
Aug 04, 2015
ZombineDev
Aug 04, 2015
ZombineDev
Nov 03, 2019
Basile-z
Mar 21, 2020
Basile-z
August 04, 2015
https://issues.dlang.org/show_bug.cgi?id=14867

ZombineDev <petar.p.kirov@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|doc                         |DDoc: generate docs for
                   |                            |alias this members by
                   |                            |including the API of the
                   |                            |member

--
August 04, 2015
https://issues.dlang.org/show_bug.cgi?id=14867

--- Comment #1 from ZombineDev <petar.p.kirov@gmail.com> ---
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;
}

--
August 04, 2015
https://issues.dlang.org/show_bug.cgi?id=14867

ZombineDev <petar.p.kirov@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|DDoc: generate docs for     |DDoc: generate docs for all
                   |alias this members by       |alias this members by
                   |including the API of the    |including the API for their
                   |member                      |types

--
November 03, 2019
https://issues.dlang.org/show_bug.cgi?id=14867

Basile-z <b2.temp@gmx.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |b2.temp@gmx.com
         Resolution|---                         |DUPLICATE

--- Comment #2 from Basile-z <b2.temp@gmx.com> ---


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

--
March 21, 2020
https://issues.dlang.org/show_bug.cgi?id=14867

Basile-z <b2.temp@gmx.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|b2.temp@gmx.com             |

--