|
enum | Binary : bool { Binary::ONE,
Binary::TWO
} |
|
enum | BoolTest : bool { BoolTest::Yay,
BoolTest::Nay
} |
|
enum | Color {
Color::RED = -10,
Color::BLUE = 0,
Color::GREEN = 10,
Color::RED = 1,
Color::GREEN = 2,
Color::BLUE = 4,
Color::RED = 1,
Color::GREEN = 2,
Color::BLUE = 4,
Color::RED = 1,
Color::GREEN = 2,
Color::BLUE = 4,
Color::RED = -10,
Color::BLUE = 0,
Color::GREEN = 10,
Color::RED,
Color::BLUE,
Color::GREEN,
Color::RED = -12,
Color::GREEN = 7,
Color::BLUE = 15,
Color::RED = 1,
Color::GREEN = 2,
Color::BLUE = 4,
Color::RED = 1,
Color::GREEN = 2,
Color::BLUE = 4,
Color::RED = 1,
Color::GREEN = 2,
Color::BLUE = 4,
Color::RED = -12,
Color::GREEN = 7,
Color::BLUE = 15
} |
|
enum | crc_hack { crc_hack::b5a7b602ab754d7ab30fb42c4fb28d82
} |
|
enum | crc_hack_2 { crc_hack_2::b5a7b602ab754d7ab30fb42c4fb28d82,
crc_hack_2::d19f2e9e82d14b96be4fa12b8a27ee9f
} |
|
enum | Directions {
Up = 85,
Down = -42,
Right = 120,
Left = -120,
NoDirection = 0,
Left = std::uint64_t{1} << 10,
Down = std::uint64_t{1} << 20,
Up = std::uint64_t{1} << 31,
Right = std::uint64_t{1} << 63
} |
|
enum | LargeNumbers { LargeNumbers::First = -1024,
LargeNumbers::Second = 1024
} |
|
enum | lt1 { s1,
loooooooooooooooooooong1
} |
|
enum | boo1::lt1 { boo1::s1,
boo1::loooooooooooooooooooong1,
boo1::s1,
boo1::loooooooooooooooooooong1
} |
|
enum | boo2::boo3::lt1 { boo2::boo3::s1,
boo2::boo3::loooooooooooooooooooong1,
boo2::boo3::s1,
boo2::boo3::loooooooooooooooooooong1
} |
|
enum | lt2 : unsigned { s2,
loooooooooooooooooooong2
} |
|
enum | boo1::lt2 : unsigned { boo1::s2,
boo1::loooooooooooooooooooong2,
boo1::s2,
boo1::loooooooooooooooooooong2
} |
|
enum | boo2::boo3::lt2 : unsigned { boo2::boo3::s2,
boo2::boo3::loooooooooooooooooooong2,
boo2::boo3::s2,
boo2::boo3::loooooooooooooooooooong2
} |
|
enum | lt3 { lt3::s3,
lt3::loooooooooooooooooooong3
} |
|
enum | boo1::lt3 { boo1::lt3::s3,
boo1::lt3::loooooooooooooooooooong3
} |
|
enum | boo2::boo3::lt3 { boo2::boo3::lt3::s3,
boo2::boo3::lt3::loooooooooooooooooooong3
} |
|
enum | lt4 : unsigned { lt4::s4,
lt4::loooooooooooooooooooong4
} |
|
enum | boo1::lt4 : unsigned { boo1::lt4::s4,
boo1::lt4::loooooooooooooooooooong4
} |
|
enum | boo2::boo3::lt4 : unsigned { boo2::boo3::lt4::s4,
boo2::boo3::lt4::loooooooooooooooooooong4
} |
|
enum | MaxUsedAsInvalid : std::uint8_t { MaxUsedAsInvalid::ONE,
MaxUsedAsInvalid::TWO = 63,
MaxUsedAsInvalid::INVALID = std::numeric_limits<std::uint8_t>::max()
} |
|
enum | number : unsigned long {
one = 100,
one = 1,
two = 200,
two,
three = 300,
three,
four = 400,
no_number = 0,
one = 1 << 1,
one = 1,
one = 1 << 1,
two = 1 << 2,
two,
two = 1 << 2,
three = 1 << 3,
three,
three = 1 << 3,
four = 1 << 4
} |
|
enum | Numbers : int {
Numbers::One,
Numbers::Two,
Numbers::Three,
one = 1,
two,
three,
Numbers::many = 127,
Numbers::none = 0,
Numbers::one = 1 << 1,
Numbers::two = 1 << 2,
Numbers::three = 1 << 3,
Numbers::many = 1 << 30
} |
|