Member predicate FunctionInput::isQualifierObject
Holds if this is the input value pointed to by the this pointer of an instance member
function.
Example:
struct C {
void mfunc(int n, char* p, float& r) const;
};
isQualifierObject()holds for theFunctionInputthat represents the value of*this(with typeC const) on entry to the function.
predicate isQualifierObject(int ind)