using type declaration output as member function
Open
- Dominant language
- Python
- Stars
- 20
- Forks
- 25
- PR merge metrics
- No merged PRs in 30d
Description
A nested "using" statement which declares a type is instead listed as a member function.
Example:
```
class params
{
public:
/** A reference to an element.
*/
/**@{*/
struct reference
{
};
using const_reference = reference;
/**@}*/
};
```
Note how `const_reference` is in the Member Functions:

Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.