BitmaskUda

Undocumented in source.

Members

Functions

get
Uda get()
Undocumented in source. Be warned that the author may not have intended to support it.

Manifest constants

BitmaskUda
enum BitmaskUda;
Undocumented in source.
BitmaskUda
enum BitmaskUda;
Undocumented in source.

Examples

static enum Uda
{
    a = 1,
    b = 2,
    c = 4
}

@(Uda.a, Uda.c)
static struct A {}

static assert(BitmaskUda!(Uda, A) == (Uda.a | Uda.c));

Meta