/** * \brief Determine whether the given cursor kind represents an attribute. */ func (ck CursorKind) IsAttribute() bool { o := C.clang_isAttribute(uint32(ck)) if o != C.uint(0) { return true } return false }
// Determine whether the given cursor kind represents an attribute. func (ck CursorKind) IsAttribute() bool { o := C.clang_isAttribute(C.enum_CXCursorKind(ck)) return o != C.uint(0) }