// IsConstQualified determines whether a Type has the "const" qualifier set, // without looking through typedefs that may have added "const" at a // different level. func (t Type) IsConstQualified() bool { o := C.clang_isConstQualifiedType(t.c) if o != C.uint(0) { return true } return false }
// Determine whether a CXType has the "const" qualifier set, without looking through typedefs that may have added "const" at a different level. func (t Type) IsConstQualifiedType() bool { o := C.clang_isConstQualifiedType(t.c) return o != C.uint(0) }