SmartEnumValue

Struct template representing a single member of an enum -- containing a string for the enum identifier and a code for the corresponding value.

struct SmartEnumValue (
T
) {}

Members

Aliases

BaseType
alias BaseType = T
Undocumented in source.

Variables

name
istring name;
Undocumented in source.
value
T value;
Undocumented in source.

Parameters

T

base type of enum

Meta