- Function
alias Function(alias Fun, string Source = __traits(identifier, Fun), int Index = 0) = Function!(Fun, functionAttributes!Fun | (__traits(isStaticFunction, Fun) ? ExtendedFunctionAttribute.static_ : 0), Type!(ReturnType!Fun, "std.traits.ReturnType!(%s)".format(Source)), __traits(identifier, Fun), Index, reflectParameterList!(Fun, Source), UDAList!(makeUDAs!(Source, 0, __traits(getAttributes, Fun))))
Undocumented in source.
- Function
alias Function(alias Fun, string Aggregate, string Member, int Index) = Function!(Fun, `__traits(getOverloads, %s, "%s")[%d]`.format(Aggregate, Member, Index), Index)
Create a Function meta-object from function Fun,
- PDV
alias PDV = ParameterDefaults
Undocumented in source.
- Parameter
alias Parameter(alias Type, string Name = "") = Parameter!([], Type, Name)
Undocumented in source.
- Parameter
alias Parameter(string[] StorageClasses, alias Type, string Name = "") = Parameter!(UDAList!(), StorageClasses, Type, Name)
Undocumented in source.
Meta-object that captures all the properties of a function