On Thursday, 5 September 2019 at 20:55:15 UTC, Manu wrote:
[snip]

Interesting... you can see in the code, there are doco comments
everywhere, but the docs are empty O_o
Also the second line of the description linking to the C++ docs is
missing too... where did all the docs go?


The point I was trying to make wrt basic_string was that the top of it looks like

/**
 * D language counterpart to C++ std::basic_string.
 *
* C++ reference: $(LINK2 https://en.cppreference.com/w/cpp/string/basic_string)
 */
extern(C++, class)
extern(C++, (StringNamespace))
struct basic_string(T, Traits = char_traits!T, Alloc = allocator!T)

whereas the top of vector looks like

extern(C++, class) struct vector(T, Alloc = allocator!T)

It has no top-level comment. With no top-level comment, all the other documentation won't show up.

Reply via email to