mrdocs::doc::InlineContainer::append

append overloads

Synopses

Declared in <mrdocs/Metadata/DocComment/Inline/InlineBase.hpp>

Append a TextInline child.

InlineContainer&
append(std::string_view text);
» more...

Append a child of the specified type.

template<
    std::derived_from<Inline> InlineTy,
    class... Args>
InlineContainer&
append(Args&&... args);
» more...

Return Value

A reference to this container.

Template Parameters

NameDescription
InlineTyThe Inline-derived type to add.

Parameters

NameDescription
textThe text to append.
argsConstructor arguments forwarded to the child.