/* Parameter Comment AST node of any kind. Returns number of children of the AST node. */ func (c Comment) NumChildren() uint32 { return uint32(C.clang_Comment_getNumChildren(c.c)) }
/** * \param Comment AST node of any kind. * * \returns number of children of the AST node. */ func (c Comment) NumChildren() int { return int(C.clang_Comment_getNumChildren(c.c)) }