https://issues.dlang.org/show_bug.cgi?id=17425
Issue ID: 17425
Summary: add __traits(getParameterStorageClasses, f, i)
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P1
Component: dmd
Assignee: [email protected]
Reporter: [email protected]
This returns a tuple of strings representing the storage classes of the ith
parameter of function f. 0 represents the first parameter.
The order of the strings in the tuple should not be depended upon.
This is intended to replace the implementation of
std.traits.ParameterStorageClassTuple(f)
--