Method.functionPostfixCode

Undocumented in source.
struct Method(string Mptr, R, string ID, uint FA, string[] SCM, T...)
enum functionPostfixCode = `%s%s%s%s%s%s`.format(functionAttributes & FunctionAttribute.pure_ ? " pure" : "", functionAttributes & FunctionAttribute.nothrow_ ? " nothrow" : "", functionAttributes & FunctionAttribute.trusted ? " @trusted" : "", functionAttributes & FunctionAttribute.safe ? " @safe" : "", functionAttributes & FunctionAttribute.nogc ? " @nogc" : "", functionAttributes & FunctionAttribute.system ? " @system" : "");

Meta