/** * \brief Determine if a C++ member function or member function template is * declared 'static'. */ func (c Cursor) CXXMethod_IsStatic() bool { o := C.clang_CXXMethod_isStatic(c.c) if o != C.uint(0) { return true } return false }
// Determine if a C++ member function or member function template is declared 'static'. func (c Cursor) CXXMethod_IsStatic() bool { o := C.clang_CXXMethod_isStatic(c.c) return o != C.uint(0) }