RemoveAttributes

Removes all the attributes from compile-time entity that is given as the only argument

Members

Aliases

RemoveAttributes
alias RemoveAttributes = SetFunctionAttributes!(U, functionLinkage!U, FunctionAttribute.none)
Undocumented in source.
U
alias U = from.bolts.traits.TypesOf!T[0]
Undocumented in source.

Examples

void f0() @safe {}
void f1() @system {}

static assert(is(RemoveAttributes!f1 == RemoveAttributes!f0));

Meta