Tristate

State being either yes, no or unknown.

struct Tristate {
@safe pure nothrow @nogc
enum defaultCode;
@safe pure nothrow @nogc
enum no;
@safe pure nothrow @nogc
enum yes;
@safe pure nothrow @nogc
enum unknown;
}

Meta