reflectIgnore

Attribute to ignore a reflection target

template reflectIgnore (
string target
) {}

Members

Enums

reflectIgnore
enum reflectIgnore
Undocumented in source.

Examples

struct S
{
    @reflectIgnore!"c++"
    int a;
}

import std.traits: hasUDA;
static assert(hasUDA!(S.a, reflectIgnore!"c++"));

Meta