/** * IsReference determines whether the given cursor kind represents a simple * reference. * * Note that other kinds of cursors (such as expressions) can also refer to * other cursors. Use clang_getCursorReferenced() to determine whether a * particular cursor refers to another entity. */ func (ck CursorKind) IsReference() bool { o := C.clang_isReference(uint32(ck)) if o != C.uint(0) { return true } return false }
/* Determine whether the given cursor kind represents a simple reference. Note that other kinds of cursors (such as expressions) can also refer to other cursors. Use clang_getCursorReferenced() to determine whether a particular cursor refers to another entity. */ func (ck CursorKind) IsReference() bool { o := C.clang_isReference(C.enum_CXCursorKind(ck)) return o != C.uint(0) }