Check whether a function is a copy constructor.
<mrdocs/Metadata/Symbol/Function.hpp>bool
isCopyConstructor(FunctionSymbol const& func);
A copy constructor is a non-template constructor whose first parameter is an lvalue reference to the possibly cv-qualified record type, with all remaining parameters having defaults ([class.copy.ctor]).
func is a copy constructor.
| Name | Description |
|---|---|
| func | The function to check. |