TParamCommandComment

public struct TParamCommandComment: Comment

A \tparam command that describes a template parameter (name and description). For example:

\tparam T description.
  • Undocumented

    Declaration

    Swift

    public let clang: CXComment
  • Determines the zero-based nesting depth of this parameter in the template parameter list. For example,

    template<typename C, template<typename T> class TT>
    void test(TT<int> aaa);
    

    for C and TT the nesting depth is 0, and for T the nesting depth is 1.

    Declaration

    Swift

    public var depth: Int