```d
void fnA(const ...){}
void fnB(immutable ...){}
void fnC(shared ...){}
```
... then how do I get that type qualifier using compile-time
reflection?
Ideally I need to be able to do this on function/function
pointer/delegate TYPES, not just the actual function symbols.
How to get type qualifiers of D-style variadic parameter
IchorDev via Digitalmars-d-learn Mon, 04 May 2026 20:31:20 -0700
If I have a type qualifier on a D-style variadic parameter, like
so:
- How to get type qualifiers of... IchorDev via Digitalmars-d-learn
- Re: How to get type qual... H. S. Teoh via Digitalmars-d-learn
- Re: How to get type qual... dave via Digitalmars-d-learn
- Re: How to get type qual... IchorDev via Digitalmars-d-learn
- Re: How to get type ... Steven Schveighoffer via Digitalmars-d-learn
- Re: How to get type qual... monkyyy via Digitalmars-d-learn
