/*** * \brief Determine whether the given cursor represents a currently * unexposed piece of the AST (e.g., CXCursor_UnexposedStmt). */ func (ck CursorKind) IsUnexposed() bool { o := C.clang_isUnexposed(uint32(ck)) if o != C.uint(0) { return true } return false }
// * Determine whether the given cursor represents a currently unexposed piece of the AST (e.g., CXCursor_UnexposedStmt). func (ck CursorKind) IsUnexposed() bool { o := C.clang_isUnexposed(C.enum_CXCursorKind(ck)) return o != C.uint(0) }